如何在不清除行或清除表格边框的情况下写入表格的合并单元格。
前
执行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);
由于