Java开发网 |
注册 |
登录 |
帮助 |
搜索 |
排行榜 |
发帖统计
|
您没有登录 |
» Java开发网 » Servlet/JSP/JSF/JavaFX Script
打印话题 寄给朋友 订阅主题 |
作者 | Webdav 连接超时,请各位高手帮帮忙。 |
sunstar
发贴: 11 |
于 2005-12-20 16:26
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(b); fis.close(); ByteArrayInputStream bais = new ByteArrayInputStream(b); 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使用技巧 |
话题树型展开 |
人气 | 标题 | 作者 | 字数 | 发贴时间 |
1722 | Webdav 连接超时,请各位高手帮帮忙。 | sunstar | 1245 | 2005-12-20 16:26 |
1402 | Re:Webdav 连接超时,请各位高手帮帮忙。 | struggle | 57 | 2005-12-21 08:46 |
1580 | Re:Webdav 连接超时,请各位高手帮帮忙。 | sunstar | 77 | 2005-12-21 10:30 |
已读帖子 新的帖子 被删除的帖子 |
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 |