如何使用Java中的itext lib将数据写入包含html标签的pdf文件

时间:2018-01-08 15:50:04

标签: java html pdf itext

我有一个包含一些html标签的String,它来自数据库,我想在PDF文件中用HTML标签的形式在String中写出相同的样式。我试着像这样使用XMLWorkerHelper

String html = What is the equation of the line passing through the 
point (2,-3) and making an angle of -45<sup>2</sup> with the positive 
X-axis?

XMLWorkerHelper.getInstance().parseXHtml(writer, document, new 
StringReader(html));

但它只读取html标记内的数据(在这种情况下只有2),它忽略了其他字符串。但我希望整个String与HTML格式化。 使用HTMLWorker它可以很好地工作但不推荐使用,所以请告诉我如何实现这一点。 我正在使用iText 5 lib

0 个答案:

没有答案