码迷,mamicode.com
首页 > 其他好文 > 详细

下载文件

时间:2016-11-25 11:35:01      阅读:194      评论:0      收藏:0      [点我收藏+]

标签:index   except   return   地址   param   comm   put   bsp   eval   

/**

*图片下载

*url 图片地址

*path下载的路径(存放位置)

*index多图下载图片下标

*postfix 图片后缀

*/

private File downLoadImage(String url, String path, int index ,String postfix) throws Exception {
URL ul = new URL(url);
URLConnection uc = ul.openConnection();
File file = new File(path, "f" + index + postfix);
FileOutputStream fos = new FileOutputStream(file);
IOUtils.copy(uc.getInputStream(), fos);
IOUtils.close(uc);
IOUtils.closeQuietly(fos);
return file;
}

 

/**

*文件下载

*path下载的路径(存放位置)

*file  下载的文件

*/

private File downLoadFile(path,file) throws Exception {
File paramFile = new File(path, file);
OutputStreamWriter write = new OutputStreamWriter(new FileOutputStream(paramFile),"utf-8");
BufferedWriter bw = new BufferedWriter(write);
bw.write(mapper.writeValueAsString(command));
bw.flush();
bw.close();
return paramFile;
}

下载文件

标签:index   except   return   地址   param   comm   put   bsp   eval   

原文地址:http://www.cnblogs.com/tanxd/p/6100742.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!