【发布时间】:2015-01-29 17:57:20
【问题描述】:
我尝试使用 IText java 从 html 生成 pdf。我需要创建链接锚。下面是示例代码。
Java 代码:
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();
HTML代码:
<?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>
但是最后点击链接的时候并没有去锚
我做错了什么?
【问题讨论】:
标签: java html pdf itext anchor