0

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.jarjarファイルを使用しています。

4

1 に答える 1