JavaでiTextを使用してPDFを作成しようとしています。PDFにHTMLタグを書き込もうとすると<a href="https://www.google.co.in">Google</a>
、Googleの代わりに(リンクとして)作成されました。ネットを検索した後、使用してみXMLWorkerHelper
ました。The method parseXHtml(PdfWriter, Document, InputStream) from the type XMLWorkerHelper refers to the missing type PdfWriter
しかし、このエラーが何であるかを取得していないため、日食でエラーが発生します。
try {
String k = "<html><body> This is my Project </body></html>";
OutputStream file = new FileOutputStream(new File("C:\\Test.pdf"));
Document document = new Document();
PdfWriter writer = PdfWriter.getInstance(document, file);
document.open();
InputStream is = new ByteArrayInputStream(k.getBytes());
XMLWorkerHelper.getInstance().parseXHtml(writer, document, is);
document.close();
file.close();
} catch (Exception e) {
e.printStackTrace();
}
どの PdfWriter を使用すればよいか知りたいです。xmlworker-5.4.1.jar
jarファイルを使用しています。