gpt4 book ai didi

java - 我需要将 PDDocument 转换为文件对象

转载 作者:行者123 更新时间:2023-12-01 09:33:27 30 4
gpt4 key购买 nike

我正在尝试通过org.apache.pdfbox.multipdf.Splitter拆分pdf文档,并且需要在此单页PDDocument上执行某些文件操作,

如何将 PDDocument 转换为 Java 中的文件对象?

最佳答案

非常简单。我使用的是1.8.16

    try {
PDDocument document = PDDocument.load(new File(filename));


// do what ever you want
document.save(newfilename);



} catch (IOException | BadSecurityHandlerException | CryptographyException e) {
e.printStackTrace();
}
finally {
if(document != null )
try {
document.close();
} catch (IOException e) {
// TODO Auto-generated catch block
e.printStackTrace();
}
//return tmpFile != null ? tmpFile.getAbsolutePath() : null;
return tmpFilename;
}

关于java - 我需要将 PDDocument 转换为文件对象,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/39202300/

30 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com