我正在使用此代码在 android 中生成 pdf 文件,但它给了我“找不到文件异常”
try {
OutputStream file = new FileOutputStream(new File("D:\\Test.pdf"));
Document document = new Document();
// PdfWriter.getInstance(document, new FileOutputStream(FILE));
PdfWriter.getInstance(document, file);
document.open();
addMetaData(document);
addTitlePage(document);
addContent(document);
//createImage();
document.close();
} catch (Exception e) {
e.printStackTrace();
}
当我执行这一行时:
PdfWriter.getInstance(document, file);
它说“Java.io.FileNotFOundException”。我必须创建新文件,为什么它打开一个甚至还没有生成的文件?这段代码有什么问题?