写入表格的单元格

时间:2017-02-26 13:31:33

标签: java apache-poi

如何在不清除行或清除表格边框的情况下写入表格的合并单元格。

before

执行IDE后

after execution of the IDE

这是我的代码

 Row r5 = sh.createRow(29);
 c = r5.createCell(1);
 c.setCellValue((String) jTable1.getValueAt(0, 5)+"E");
 c.setCellStyle(Style);
 //LatitudeB

 c = r5.createCell(4);
 c.setCellValue((String) jTable1.getValueAt(0, 6)+"N");
 c.setCellStyle(Style);

由于

0 个答案:

没有答案