Java开发网 |
注册 |
登录 |
帮助 |
搜索 |
排行榜 |
发帖统计
|
您没有登录 |
» Java开发网 » WebService/XML/JSON/SOAP/SOA
打印话题 寄给朋友 订阅主题 |
作者 | Webdav 怎么样处理连接超时?请高手帮忙。 |
sunstar
发贴: 11 积分: 0 |
于 2005-12-20 16:24
public void upload(String filepath) throws Exception { WebdavResource resource = null; File file = null; try { HttpURL httpURL = new HttpURL(url); httpURL.setUserinfo("esp", "esp"); resource = new WebdavResource(httpURL); file = new File(filepath); FileInputStream fis = new FileInputStream(file); byte[] b = new byte[(int) file.length()]; fis.read; fis.close(); ByteArrayInputStream bais = new ByteArrayInputStream; if (false == resource.putMethod(url + file.getName(), bais)) { throw new Exception("upload failed"); } resource.commitTransaction(); int statusCode = resource.getStatusCode(); resource.closeSession(); resource.close(); resource = null; } catch (HttpException he) { System.out.println(he); } catch(ConnectException ce) { System.out.println(ce); } finally { } } 以上代码中:第6行 httpURL.setUserinfo("esp", "esp");的信息错误 第7行 resource = new WebdavResource(httpURL); 就会连接超时。 该怎么判断第六行是不是正确的。 JBuilder使用技巧 |
话题树型展开 |
人气 | 标题 | 作者 | 字数 | 发贴时间 |
9873 | Webdav 怎么样处理连接超时?请高手帮忙。 | sunstar | 1245 | 2005-12-20 16:24 |
已读帖子 新的帖子 被删除的帖子 |
Powered by Jute Powerful Forum® Version Jute 1.5.6 Ent Copyright © 2002-2021 Cjsdn Team. All Righits Reserved. 闽ICP备05005120号-1 客服电话 18559299278 客服信箱 714923@qq.com 客服QQ 714923 |