可以通过使用Apache POI库来实现。Apache POI是一个开源的Java库,用于处理Microsoft Office格式的文件,包括Excel文件。
在Java中使用Apache POI库可以创建、读取和修改Excel文件。下面是一个示例代码,演示如何使用Java和Apache POI库来编写包含已解析信息的Excel文件:
import org.apache.poi.ss.usermodel.*;
import org.apache.poi.xssf.usermodel.XSSFWorkbook;
import java.io.FileOutputStream;
import java.io.IOException;
public class ExcelWriter {
public static void main(String[] args) {
// 创建工作簿
Workbook workbook = new XSSFWorkbook();
// 创建工作表
Sheet sheet = workbook.createSheet("Sheet1");
// 创建行
Row row = sheet.createRow(0);
// 创建单元格,并设置值
Cell cell = row.createCell(0);
cell.setCellValue("姓名");
cell = row.createCell(1);
cell.setCellValue("年龄");
// 创建下一行,并设置值
row = sheet.createRow(1);
cell = row.createCell(0);
cell.setCellValue("张三");
cell = row.createCell(1);
cell.setCellValue(25);
// 保存Excel文件
try (FileOutputStream outputStream = new FileOutputStream("output.xlsx")) {
workbook.write(outputStream);
} catch (IOException e) {
e.printStackTrace();
}
System.out.println("Excel文件已创建成功!");
}
}
上述代码使用Apache POI库创建了一个包含姓名和年龄信息的Excel文件。首先创建工作簿,然后创建工作表,接着创建行和单元格,并设置相应的值。最后保存Excel文件到指定路径。
领取专属 10元无门槛券
手把手带您无忧上云