gpt4 book ai didi

JavaServlet : Unable to create Excel File

转载 作者:行者123 更新时间:2023-12-01 12:12:16 26 4
gpt4 key购买 nike

我很难让 Servlet 使用 apache POI 创建 Excel 文件

当我在单独的 Java 类中使用以下代码时,它工作正常,但是当我将代码复制到 servlet 中时,servlet 只是不创建 excel 文件。

这基本上就是 servlet 中的全部内容。我获取参数并存储它们。我只想让 servlet 首先创建文件,然后开始添加用户输入。

Workbook workbook = new HSSFWorkbook();
Sheet sheet = workbook.createSheet("Sheet 1");

Cell cell1 = sheet.createRow(0).createCell(3);
cell1.setCellValue("100000");
Cell cell2 = sheet.createRow(1).createCell(3);
cell2.setCellValue("Text text.");

FileOutputStream output = new FileOutputStream("SampSamp.xls");
workbook.write(output);
output.close();

最佳答案

我尝试了您的代码,该文件是在 c:\glassfish3\glassfish\domains\domain1\config 文件夹中创建的。也许您考虑给出绝对路径。例如:C:\temp\SamSamp.xls。

关于JavaServlet : Unable to create Excel File,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/27204492/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com