根据服务器url地址下载文件
【根据服务器url地址下载文件】public static void downLoad(String _url) throws IOException,FileNotFoundException
{
URL url = new URL(_url);
HttpURLConnection connection =(HttpURLConnection)url.openConnection();
DataInputStream in = new DataInputStream(connection.getInputStream());
String name = FileUtil.getUrlFileName(_url);
log.info("url 的文件名为:"+name);
String newName =Properties.getString("HTML2PDF_Pilot_path")+"/temp/"+name+".doc";
log.info("本地文件路径为:"+newName);
DataOutputStream out=new DataOutputStream(new FileOutputStream(newName));
byte[] buffer = new byte[4096];
int count = 0;
while ((count = in.read(buffer)) > 0) {
out.write(buffer, 0, count);
}
out.close();
in.close();
}
推荐阅读
- 探索免费开源服务器tomcat的魅力
- 记录iOS生成分享图片的一些问题,根据UIView生成固定尺寸的分享图片
- [源码解析]|[源码解析] NVIDIA HugeCTR,GPU版本参数服务器---(3)
- 运营是什么()
- ATAN2根据xy坐标计算角度
- mac|mac 链接linux服务器 如何在Mac上连接服务器
- Linux|Linux 服务器nginx相关命令
- 运维|如何限制IP 通过 SSH连接服务器
- 周检视5/14-5/21(第三周)
- Arcgis根据经纬度批量提取属性值