JAVA–POI 產生 Excel 2007 Format

在 Java 中要產生 Excel File 歸 Apache POI 莫屬,那 POI 如何產生 Excel 2007 以上的檔案呢?在此提供一個 Sample Code.

Workbook wb = new XSSFWorkbook();
Sheet s = wb.createSheet(“Sheet 1”);
Row row = s.createRow( 0 );
row.createCell( 0 ).setCellValue(“test”);
s.addMergedRegion(new CellRangeAddress(0, 0, 0, 3));
FileOutputStream out = new FileOutputStream(“sample.xlsx”);
wb.write(out);
out.close();

執行上述程式後用 Excel 開啟此檔其顯示如下所示:

image

留言

這個網誌中的熱門文章

WPF - 深入 Style

C# – M$ Chart Control 自定 ToolTip 的顯示

Vue.js - 基礎介紹教學