0

複数の HTML を 1 つの PDF に変換したい。以下のコードを使用して pdf を作成しました。このコードは、内容のない空の PDF を作成しています。

    ArrayList<String> ar = new ArrayList<String>();
    ar.add(/resources/html1.html);

    String outputFile =" C:/WholePDF.pdf";
    Document document = new Document();
    PdfWriter.getInstance(document, new FileOutputStream(outputFile));
    document.open();
    for (String htmlfile : ar) {
        String html = Utilities.readFileToString(htmlfile);
        ElementList list = XMLWorkerHelper.parseToElementList(html, null);
        for (Element e : list) {
            document.add(e);
        }
        document.newPage();
    }
    document.close();
4

0 に答える 0