我正在尝试使用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();