使用iText库将PDF转换为HTML

时间:2018-02-01 06:55:15

标签: java html itext

我们可以使用java中的iText库将PDF转换为HTML文件吗?我已将html转换为pdf,并希望使用iText实现PDF到HTML。我不想使用两个不同的库进行相同的操作,因此避免使用pdfBox。

1 个答案:

答案 0 :(得分:-3)

调查 https://itextpdf.com/itext7/pdfHTML

public static void main() throws IOException {

        // IO
        File htmlSource = new File("input.html");
        File pdfDest = new File("output.pdf");

        // pdfHTML specific code
        ConverterProperties converterProperties = new ConverterProperties();
        HtmlConverter.convertToPdf(new FileInputStream(htmlSource), new FileOutputStream(pdfDest), converterProperties);
    }