java – RuntimeWorkerException:找到无效的嵌套标记头,预期结束标记元

前端之家收集整理的这篇文章主要介绍了java – RuntimeWorkerException:找到无效的嵌套标记头,预期结束标记元前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。

我正在使用iText将html转换为pdf,但我不断在parseXHtml中抛出RuntimeWorkerException.这是我的代码

Document tempDoc = new Document();
PdfWriter pdfWriter = PdfWriter.getInstance(tempDoc,out);
tempDoc.open();
XMLWorkerHelper.getInstance().parseXHtml(pdfWriter,tempDoc,new ByteArrayInputStream(html.getBytes()));
tempDoc.close();

我不太熟悉HTML和XHTML之间的差异,所以我对如何处理这个问题感到有些不知所措. Here’s the html source if it helps.

最佳答案
错误信息很清楚,你有一个< meta>未关闭的标头中的标签在HTML中有效但不是XHTML,而您正在将其解析为.你需要关闭那些,< meta ... />
原文链接:https://www.f2er.com/html/426727.html

猜你在找的HTML相关文章