我需要检测单元格中的文本是否被删除。我正在使用这个:
Cell cc = sheet.getCell("B1");
CellFormat format = cc.getCellFormat();
System.out.println(format.getFont().isStruckout());
但是我记得我读到某个地方{@ 1}}已被弃用,而CellFormat
应该被使用。如何使用CellFeatures找出文本是否被删除?
答案 0 :(得分:1)
我不认为这是真的(但引用你的来源),因为CellFormat和CellFeatures没有任何共同之处。
也许您在考虑jxl.CellFormat而不赞成使用jxl.format.CellFormat?