科技行者

行者学院 转型私董会 科技行者专题报道 网红大战科技行者

知识库

知识库 安全导航

至顶网软件频道从URL获取文件保存到本地的JAVA代码

从URL获取文件保存到本地的JAVA代码

  • 扫一扫
    分享文章到微信

  • 扫一扫
    关注官方公众号
    至顶头条

从URL获取文件保存到本地的JAVA代码

作者: blackpupil 来源:赛迪网技术社区 2007年11月15日

关键字: URL java 获取文件

  • 评论
  • 分享微博
  • 分享邮件
<%@page import="java.net.*,java.io.*"%> "ZP^YU4m7  
<%! heC%x+~  
public boolean saveUrlAs(String photoUrl, String fileName) { BcWDe-o*  
//此方法只能用户HTTP协议 @8nU< q  
  try { m$H}W$  
    URL url = new URL(photoUrl); 9{`1v>9  
    HttpURLConnection connection = (HttpURLConnection) url.openConnection(); ~)MMv6}bw  
    DataInputStream in = new DataInputStream(connection.getInputStream()); /B2#j"8x  
    DataOutputStream out = new DataOutputStream(new FileOutputStream(fileName)); Nh@v}  
    byte[] buffer = new byte[4096]; bxX$Z7X4  
    int count = 0; y6YD aZgj4  
    while ((count = in.read(buffer)) > 0) { n:+j)7W  
    out.write(buffer, 0, count); S9WS"l9C}  
    } UQqn^2  
    out.close(); V4]5h}cy  
    in.close(); ieyx|qh*  
    return true; d@V;XC  
  } E[F %N&L  
  catch (Exception e) { e K8(u>G|  
    return false; }>{]%s  
  } fMwQ<.h%  
} :-8N|KWgw  
^{Y =$a  
public String getDocumentAt(String urlString) { AJA15t lF  
//此方法兼容HTTP和FTP协议 k`vjYYYcr)  
  StringBuffer document = new StringBuffer(); 2@W< .P,  
  try { y`!J[?7Pg  
    URL url = new URL(urlString); iYQH>6r  
    URLConnection conn = url.openConnection(); 6|e| eJe^  
    BufferedReader reader = new BufferedReader(new InputStreamReader(conn. f8\Pl  
      getInputStream())); 8QB[FH<b  
    String line = null; SW`P/@*[q  
    while ( (line = reader.readLine()) != null) { Di$H{Kg-  
    document.append(line + "\n"); vz (~+OuY  
    } .XXW:7M7A  
    reader.close(); 8 *To4:Z&  
  } iT;}R,Y>;  
  catch (MalformedURLException e) { j18:AnE5`  
    System.out.println("Unable to connect to URL: " + urlString); aE1+% 6  
  } y>T!Mcl  
  catch (IOException e) { "zv~17E9W  
    System.out.println("IOException when connecting to URL: " + urlString); `tL'<}ZC@  
  } <d>% ]  
  return document.toString(); LzPKyJtm>  
} VB c*VGj  
%> 6@Y GR8)  
<% "fApVpA"aa  
//测试 %P9>90~^.  
String photoUrl = "String fileName = photoUrl.substring(photoUrl.lastIndexOf("/")); Rj{#,mktJ  
String filePath = "d:/ghost/"; \{nIqxb<  
boolean flag = saveUrlAs(photoUrl, filePath + fileName); WU>W.!WK_  
out.println("Run ok!\n<BR>Get URL file " + flag); \HD[ ?qwV  
%>查看本文来源 >
    • 评论
    • 分享微博
    • 分享邮件
    邮件订阅

    如果您非常迫切的想了解IT领域最新产品与技术信息,那么订阅至顶网技术邮件将是您的最佳途径之一。

    重磅专题
    往期文章
    最新文章