poi设置单元格行高

Apache POI是一个开源的Java库,用于读写Microsoft Office文件如Excel、Word、PPT等。

在POI中,可以使用Row对象的setHeightInPoints(float height)方法来设置单元格行高。例如:

import org.apache.poi.ss.usermodel.*;
// ...
Row row = sheet.createRow(0);
row.setHeightInPoints(30); // 设置行高为30个磅
Cell cell = row.createCell(0);
cell.setCellValue("Hello, World!");

这样,您就可以通过POI设置单元格行高了。

  •