Java文件下载设置


HttpServletResponse response = PortalUtil
.getHttpServletResponse(actionResponse);
byte[] data =null;
try{
data = FileUtil.toByteArray2(filePath);
}catch (FileNotFoundException e) {
// TODO: handle exception
response.setContentType("text/html");
response.setCharacterEncoding("UTF-8");
response.getWriter().print("<script>alert('文件未找到');window.close();</script>");
return ;
}

String fileName = "设备台账批量导入模板.csv";
fileName = URLEncoder.encode(fileName, "UTF-8");
fileName = new String(fileName.getBytes("utf-8"),"iso8859-1");
response.reset();
response.setHeader("Content-Disposition", "attachment; filename=\"" + fileName + "\"");
response.addHeader("Content-Length", "" + data.length);
response.setContentType("application/octet-stream;charset=UTF-8");
OutputStream outputStream = new BufferedOutputStream(response.getOutputStream());
outputStream.write(data);
outputStream.flush();
outputStream.close();
response.flushBuffer();



public static byte[] toByteArray2(String filePath) throws IOException {

File f = new File(filePath);
if (!f.exists()) {
throw new FileNotFoundException(filePath);
}

FileChannel channel = null;
FileInputStream fs = null;
try {
fs = new FileInputStream(f);
channel = fs.getChannel();
ByteBuffer byteBuffer = ByteBuffer.allocate((int) channel.size());
while ((channel.read(byteBuffer)) > 0) {
// do nothing
// System.out.println("reading");
}
return byteBuffer.array();
} catch (IOException e) {
e.printStackTrace();
throw e;
} finally {
try {
channel.close();
} catch (IOException e) {
e.printStackTrace();
}
try {
fs.close();
} catch (IOException e) {
e.printStackTrace();
}
}
}
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值