web-dev-qa-db-ja.com

iTextを使用してHTMLをPDFに変換する方法

import Java.io.File;
import Java.io.FileOutputStream;
import Java.io.OutputStream;
import com.itextpdf.text.Document;
import com.itextpdf.text.Paragraph;
import com.itextpdf.text.pdf.PdfWriter;

public class GeneratePDF {
    public static void main(String[] args) {
        try {

            String k = "<html><body> This is my Project </body></html>";

            OutputStream file = new FileOutputStream(new File("E:\\Test.pdf"));

            Document document = new Document();
            PdfWriter.getInstance(document, file);

            document.open();

            document.add(new Paragraph(k));

            document.close();
            file.close();

        } catch (Exception e) {

            e.printStackTrace();
        }
    }
}

これは、HTMLをPDFに変換するための私のコードです。変換することはできますが、PDFファイルではHTML全体として保存されますが、テキストのみを表示する必要があります。<html><body> This is my Project </body></html>は、PDFに保存されますが、This is my Project

19
Aman Kumar

次のように HTMLWorker クラス(廃止予定)でそれを行うことができます:

import com.itextpdf.text.html.simpleparser.HTMLWorker;
//...
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.getInstance(document, file);
    document.open();
    HTMLWorker htmlWorker = new HTMLWorker(document);
    htmlWorker.parse(new StringReader(k));
    document.close();
    file.close();
} catch (Exception e) {
    e.printStackTrace();
}

または XMLWorker を使用して( this jar からダウンロード)このコードを使用します:

import com.itextpdf.tool.xml.XMLWorkerHelper;
//...
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();
}
46
MaVRoSCy

このリンクは変換に役立つ場合があります。

https://code.google.com/p/flying-saucer/

https://today.Java.net/pub/a/today/2007/06/26/generated-pdfs-with-flying-saucer-and-itext.html

それが大学のプロジェクトである場合、これらのために行くことさえできます http://pd4ml.com/examples.htm

HTMLをPDFに変換する例を示します

1
Jayesh