使用 Java 读写 Excel 文件
问题:
如何读取和写入 Excel 文件使用 Java 从 Excel 文件写入数据,在每个文件中打印一个字符串
答案:
要在 Java 中处理 Excel 文件,您可以利用 Apache POI 库,特别是其 HSSF 模块。以下是如何从 Excel 文件读取数据的示例:
try { POIFSFileSystem fs = new POIFSFileSystem(new FileInputStream(file)); HSSFWorkbook wb = new HSSFWorkbook(fs); HSSFSheet sheet = wb.getSheetAt(0); HSSFRow row; HSSFCell cell; int rows; // Number of rows rows = sheet.getPhysicalNumberOfRows(); int cols = 0; // Number of columns int tmp = 0; // Determine the number of columns for (int i = 0; i < 10 || i < rows; i++) { row = sheet.getRow(i); if (row != null) { tmp = sheet.getRow(i).getPhysicalNumberOfCells(); if (tmp > cols) cols = tmp; } } // Iterate over rows and columns for (int r = 0; r < rows; r++) { row = sheet.getRow(r); if (row != null) { for (int c = 0; c < cols; c++) { cell = row.getCell((short) c); if (cell != null) { // Your code to process the cell value } } } } } catch (Exception ioe) { ioe.printStackTrace(); }
Apache POI 项目的文档还提供了如何将数据写入 Excel 文件的示例。
以上是如何使用 Apache POI 在 Java 中读写 Excel 文件?的详细内容。更多信息请关注PHP中文网其他相关文章!