我有一个html文本,我需要在生成的excel文件中用作单元格值。如何使用apachepoi创建html单元格?
例如,我有以下字符串和代码:
String htmlText = "<span style="text-decoration: underline;">test</span>"
cell = row.createCell(0);
cell.setCellValue(htmlText);
我也试过:
String htmlText = "<span style="text-decoration: underline;">test</span>"
XSSFRichTextString textString = new XSSFRichTextString(htmlText);
cell.setCellValue(textString);
两者都生成了纯文本excel:
在ApachePOI中可以使用html作为单元格值吗?
谢谢
暂无答案!
目前还没有任何答案,快来回答吧!