ApachePOI在单元格值中使用html文本

vom3gejh  于 2021-06-29  发布在  Java
关注(0)|答案(0)|浏览(328)

我有一个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作为单元格值吗?
谢谢

暂无答案!

目前还没有任何答案,快来回答吧!

相关问题