gpt4 book ai didi

java - 使用 jxl api/Apache POI 编辑现有的 excel 文件

转载 作者:IT老高 更新时间:2023-10-28 20:27:38 27 4
gpt4 key购买 nike

我很感兴趣,想了解更多关于 java 的知识,如何写入现有的 excel 表格/操作现有的数据。我想知道你是否能给我一个关于如何编辑现有 excel 文件并使用 jxl api/Apache POI 保存它的想法或者给我一个关于如何编辑现有 excel 文件中的一些数据然后保存的示例程序提前致谢!!

最佳答案

教程here非常有帮助并且写得很好。他们使用由 Apache POI 项目开发的外部 JAR。这是一个编辑一个单元格的简单示例:

    InputStream inp = new FileInputStream("wb.xls");
Workbook wb = WorkbookFactory.create(inp);
Sheet sheet = wb.getSheetAt([sheet index]);
Row row = sheet.getRow([row index]);
Cell cell = row.getCell([cell index]);
String cellContents = cell.getStringCellValue();
//Modify the cellContents here
// Write the output to a file
cell.setCellValue(cellContents);
FileOutputStream fileOut = new FileOutputStream("wb.xls");
wb.write(fileOut);
fileOut.close();

希望对你有帮助

关于java - 使用 jxl api/Apache POI 编辑现有的 excel 文件,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/521274/

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