使用 JExcelApi 检测单元格中的删除线文本
我需要检测单元格内的文本是否被删除。我正在使用这个:
Cell cc = sheet.getCell("B1");
CellFormat format = cc.getCellFormat();
System.out.println(format.getFont().isStruckout());
但我记得我在某处读到 CellFormat
已被弃用,应该使用 CellFeatures
代替。如何使用 CellFeatures 找出文本是否被删除?
I need to detect whether the text within a cell is struck out or not. I'm using this:
Cell cc = sheet.getCell("B1");
CellFormat format = cc.getCellFormat();
System.out.println(format.getFont().isStruckout());
but I remember I read somewhere that CellFormat
is deprecated and CellFeatures
should be used instead. How could one find out whether a text is struck out using CellFeatures?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
不知怎的,我不认为这是真的(但引用你的来源),因为 CellFormat 和 CellFeatures 实际上没有任何共同点。
也许您认为 jxl.CellFormat 已被弃用,而有利于 jxl.format.CellFormat?
Somehow I don't think that's true (but cite your source), as CellFormat and CellFeatures don't really have anything in common.
Maybe you were thinking of jxl.CellFormat is deprecated in favor of jxl.format.CellFormat?