我正在尝试在Java中使用itext将html转换为pdf

时间:2019-02-27 11:00:12

标签: java spring-boot itext

我正在尝试使用Java中的itext将html转换为pdf。我提供的路径为src / templates / index.html,但该文件未找到异常。我不想提供绝对路径,因为html文件在我的项目中。请帮我。预先感谢。代码如下。

//step1
Document document = new Document();
// step 2
PdfWriter writer = PdfWriter.getInstance(document, new,
FileOutputStream("C:\\Users\\Public\\pdf.pdf"));
// step 3
document.open();
// step 4
String path = "src/main/resources/templates/index.html";
XMLWorkerHelper.getInstance().parseXHtml(writer, document,new 
                FileInputStream(path)); 
                //step 5
                 document.close();

0 个答案:

没有答案