我有一个包含一些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