我想在excel中保存jsp文件的输出。 我尝试了以下代码:
<html>
<head>
<meta http-equiv="pragma" content="no-cache; charset=ISO-8859-1">
<title>Save File</title>
</head>
<body>
<%@ page import="org.apache.poi.hssf.usermodel.HSSFSheet"%>
<%@ page import="org.apache.poi.hssf.usermodel.HSSFWorkbook"%>
<%@ page import="org.apache.poi.hssf.usermodel.HSSFCell"%>
<%@ page import="org.apache.poi.hssf.usermodel.HSSFRow"%>
<%@ page import="org.apache.poi.hssf.usermodel.HSSFCellStyle"%>
<%@ page import="org.apache.poi.hssf.util.HSSFColor"%>
<%@ page import="java.io.* " %>
<%@page import="java.sql.* "%>
<%
// String EX_DT=null;
String filenm=request.getParameter("filenm");
File file=new File("c:\\"+filenm+".xls");
boolean exists = file.exists();
if (exists)
{
out.println("File or Directory exist.PLZ enter another filename");
}
else
{
String s1=null;
try
{
// EX_DT=(String)session.getAttribute( "dte" );
// out.println("Ex_Dt in try"+EX_DT);
HSSFWorkbook hwb=new HSSFWorkbook();
HSSFSheet sheet = hwb.createSheet("new sheet");
HSSFSheet sheet1 = hwb.createSheet("new sheet1");
HSSFRow rowhead= sheet.createRow((short)0);
//rowhead.createCell((short) 0).setCellValue("MKT");
rowhead.createCell((short) 0).setCellValue("SECURITY");
rowhead.createCell((short) 1).setCellValue("PREV_CL_PR");
rowhead.createCell((short) 2).setCellValue("CLOSE_PRIC");
rowhead.createCell((short) 3).setCellValue("NET_TRDQTY");
rowhead.createCell((short) 4).setCellValue("NET_TRDVAL");
Class.forName("com.microsoft.sqlserver.jdbc.SQLServerDriver");
String url = "jdbc:sqlserver://";
Connection con = DriverManager.getConnection(url,"sa","SQL1423#3");
Statement st=con.createStatement();
ResultSet rs=st.executeQuery("Select * from TtOne ");
int i=1;
while(rs.next())
{
HSSFRow row= sheet.createRow((short)i);
//s1=rs.getString("EX_DT");
// out.println("s1"+s1);
// if(s1.equals((String)session.getAttribute( "dte" )))
//{
// out.println("EX_DT in if of while");
row.createCell((short) 0).setCellValue(rs.getString("SECURITY"));
row.createCell((short) 1).setCellValue(rs.getString("PREV_CL_PR"));
row.createCell((short) 2).setCellValue(rs.getString("CLOSE_PRIC"));
row.createCell((short) 3).setCellValue(rs.getString("NET_TRDQTY"));
row.createCell((short) 4).setCellValue(rs.getString("NET_TRDVAL"));
i++;
// }
}
FileOutputStream fileOut = new FileOutputStream(file);//file
hwb.write(fileOut);
fileOut.close();
%><h1><b><i><% out.println("Your excel file has been generated!");%>
</i></b></h1>
<%
}
catch ( Exception ex )
{
System.out.println(ex);
}
}
%>
</body>
</html>
但是我想要用户指定路径,而不是硬编码路径。并且文件应该保存在该位置。所以我想要一个可以使用浏览选项的对话框,选择路径并点击保存后,输出应存储在excel文件中。
答案 0 :(得分:0)
假设您打算让用户下载此文件,则不应将该文件存储在Web服务器的本地磁盘文件系统中。您应该将此文件发送到HTTP响应。
首先需要将JSP转换为servlet,否则excel文件将被JSP自己的HTML和模板内容损坏,因为JSP本身是HTTP响应的一部分。
将所有Java(无HTML!no out.println()
语句!)代码放在servlet的doGet()
或doPost()
方法中,具体取决于请求类型。然后,您需要做的就是替换原始Java代码中的以下单行
hwb.write(fileOut);
通过以下几行
response.setContentType("application/vnd.ms-excel");
response.setHeader("Content-Disposition", "attachment;filename=\"" + filenm + "\"");
hwb.write(response.getOutputStream());
第一个告诉浏览器它是什么类型的文件,以便它可以在必要时将默认应用程序(MS Excel)与它相关联。第二个告诉浏览器应弹出另存为对话框。第三个告诉POI它应该将Excel文件写入HTTP响应。
不要忘记删除 new File()
废话。它只会将文件保存在运行Web服务器的计算机上。您需要意识到,在实时生产环境中,Web服务器在与Web浏览器不同的机器上运行。
在一个不相关的说明中,您的JDBC代码正在泄漏资源。您忘记了close()
Connection
区Statement
中ResultSet
,finally
和try
的{{1}}。这将导致DB长期耗尽它们。相应地修复它。