jsp页面中如何调用一个.xls文件的绝对路径。在IE中能打开和保存。

2024-12-12 12:00:04
推荐回答(3个)
回答1:

String filePath = this.getServletContext().getRealPath("/"); //获取当前项目所在路径
使生Excel生成到工程的目录下,返回文件名
打开时直接用生成的文件的相对路径打开就可以了

回答2:

使用下载
File file = new File(“d:\xxx.xls”);
if (file != null) {
// 缓冲区
byte[] bRead = new byte[1024];
int iRead = 0;
response.setContentType("application/msexcel");
response.setHeader("Content-Disposition",
"attachment; filename=" + "myfile.xls");
try {
OutputStream os = response.getOutputStream();
FileInputStream fis = new FileInputStream(inFilePath);
while ((iRead = fis.read(bRead)) != -1) {
os.write(bRead, 0, iRead);
}
fis.close();
os.flush();
os.close();
} catch (IOException e) {
System.out.println("IOException:cancel down");
// e.printStackTrace();
}
}
否则话貌似要改的是web服务器的配置,让web服务器能够直接传送excel,这样就能在浏览器里面打开excel文件了

回答3:

你是要上传么?还是导入excel的数据?