文件下载

/**
* 文件下载
*
*
* @return 保存路径
* @throws FileNotFoundException
*/
@RequestMapping("/videoDownload")
@ResponseBody
public String saveUrlAs(HttpServletRequest request, String videoUrl) throws FileNotFoundException {
String savePath = request.getServletContext().getRealPath("");
String saveName = videoUrl.substring(videoUrl.lastIndexOf("/") + 1);
// 创建不同的文件夹目录
File file = new File(savePath);
// 判断文件夹是否存在
if (!file.exists()) {
// 如果文件夹不存在,则创建新的的文件夹
file.mkdirs();
}
FileOutputStream fileOut = null;
HttpURLConnection conn = null;
InputStream inputStream = null;
try {
// 建立链接
URL httpUrl = new URL(videoUrl);
conn = (HttpURLConnection) httpUrl.openConnection();
// 以Post方式提交表单,默认get方式
//conn.setRequestMethod(method);
conn.setDoInput(true);
conn.setDoOutput(true);
// post方式不能使用缓存
conn.setUseCaches(false);
// 连接指定的资源
conn.connect();
// 获取网络输入流
inputStream = conn.getInputStream();
BufferedInputStream bis = new BufferedInputStream(inputStream);
// 判断文件的保存路径后面是否以/结尾
if (!savePath.endsWith("/")) {
savePath+= "/";
}
// 写入到文件(注意文件保存路径的后面一定要加上文件的名称)
fileOut = new FileOutputStream(savePath+ saveName);
BufferedOutputStream bos = new BufferedOutputStream(fileOut);

byte[] buf = new byte[4096];
int length = bis.read(buf);
// 保存文件
while (length != -1) {
bos.write(buf, 0, length);
length = bis.read(buf);
}
bos.close();
bis.close();
conn.disconnect();
} catch (Exception e) {
LOGGER.info(e.toString());
}
return savePath;
}

posted @ 2018-04-27 16:01  下一站_jn  阅读(126)  评论(0编辑  收藏  举报