我需要在单元格注释中添加多行。如何使用 apache POI 打破单元格注释中的行
前任:
Comment = "This is comment 1";
comment = comment + "This is comment2";
comment = comment + "This is comment3";
cell.setCellComment(comment);
我需要在单元格注释中添加多行。如何使用 apache POI 打破单元格注释中的行
前任:
Comment = "This is comment 1";
comment = comment + "This is comment2";
comment = comment + "This is comment3";
cell.setCellComment(comment);