使用 itext java 和 html 将锚点添加到 pdf



我尝试使用IText java从html生成pdf。我需要创建链接锚点。下面的示例代码。

爪哇代码:

String k = pdfService.all(request);
OutputStream os = response.getOutputStream();
Document document = new Document();
PdfWriter writer = PdfWriter.getInstance(document, os);
document.open();
InputStream is = new ByteArrayInputStream(k.getBytes());
XMLWorkerHelper.getInstance().parseXHtml(writer, document, is);
document.close();

网页代码:

    <?xml version="1.0" encoding="utf-8"?>
   <html>
     <head>
       <meta charset="utf-8"/>
       <title>title</title>
     </head>
     <body bgcolor="#ffffff">
      <p><a href="#anccc" >GoTo</a></p>
      ... some code ...
      <p id="anccc">anchor</p>
     </body>
  </html>

但最后当你点击链接时不会去锚点

我做错了什么?

据我所知,内部锚点是这样创建的:

<a href="#myanchor">Click here to go to my anchor</a>
...
<a name="myanchor">This is the destination of a link</a>

这在 XML Worker 中受支持。

不支持将id属性添加到<p>标记。

最新更新