我需要检测单元格中的文本是否被删除。我正在使用这个:
Cell cc = sheet.getCell("B1");
CellFormat format = cc.getCellFormat();
System.out.println(format.getFont().isStruckout());
但我记得我在某处读到不推荐使用
CellFormat
,而应改用CellFeatures
。如何使用CellFeatures找出是否删除了文本? 最佳答案
不知何故,我认为这是不对的(但请引用您的消息来源),因为CellFormat和CellFeatures确实没有任何共同之处。
也许您在考虑过不赞成使用jxl.CellFormat来支持jxl.format.CellFormat吗?