Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我需要检测单元格中的文本是否被删除。我正在使用这个:
Cell cc = sheet.getCell("B1"); CellFormat format = cc.getCellFormat(); System.out.println(format.getFont().isStruckout());
但我记得我读过某处CellFormat已弃用且CellFeatures应改为使用的地方。如何使用 CellFeatures 找出文本是否被删除?
CellFormat
CellFeatures
不知何故,我不认为这是真的(但引用你的来源),因为 CellFormat 和 CellFeatures 并没有真正的共同点。
也许你在想 jxl.CellFormat 被弃用而有利于 jxl.format.CellFormat?