把网络资源下载到服务器端的指定路径

/**
* 把网络资源下载到服务器端的指定路径
* @param urlString 资源的网络URL地址
* @param filename 文件名,包括后缀
* @param savePath 服务器端的指定路径
* @throws Exception
*/
public static boolean downloadToServerByUrl(String urlString, String filename,
String savePath) throws Exception {
boolean res = false;
if (StringUtils.isBlank(urlString) || StringUtils.isBlank(filename) || StringUtils.isBlank(savePath)) {
return res;
}
// 构造URL
URL url = new URL(urlString);
// 打开连接
URLConnection con = url.openConnection();
// 设置请求超时为5s
con.setConnectTimeout(5 * 1000);
// 输入流
InputStream is = con.getInputStream();

// 1K的数据缓冲
byte[] bs = new byte[1024];
// 读取到的数据长度
int len;
// 输出的文件流
File sf = new File(savePath);
if (!sf.exists()) {
sf.mkdirs();
}
OutputStream os = new FileOutputStream(sf.getPath() + "\\" + filename);
// 开始读取
while ((len = is.read(bs)) != -1) {
os.write(bs, 0, len);
}
// 完毕,关闭所有链接
os.close();
is.close();
res = true;
return res;
}

猜你喜欢

转载自417755712.iteye.com/blog/2263391