跪求用JAVA将PDF的标题提取提取出来并存入TXT中
我想用JAVA实现提取PDF文件里的标题,并将其存入TXT文本中,用PDDocumentdoc=PDDocument.load("./res/hello.pdf");PD...
我想用JAVA实现提取PDF文件里的标题,并将其存入TXT文本中,
用PDDocument doc=PDDocument.load("./res/hello.pdf");
PDDocumentInformation pdfInfo=doc.getDocumentInformation();
System.out.println(pdfInfo.getTitle()+" "+pdfInfo.getAuthor()); 能够实现输出,但是我不懂怎么将其写入TXT中,请各位大侠指教!谢谢 展开
用PDDocument doc=PDDocument.load("./res/hello.pdf");
PDDocumentInformation pdfInfo=doc.getDocumentInformation();
System.out.println(pdfInfo.getTitle()+" "+pdfInfo.getAuthor()); 能够实现输出,但是我不懂怎么将其写入TXT中,请各位大侠指教!谢谢 展开
2个回答
展开全部
File file = new File("输出路径");//例如D://输出.txt
OutputStream out = new FileOutputStream(file);
out.write((pdfInfo.getTitle()+" "+pdfInfo.getAuthor()).getBytes());
纯手敲请采纳!!!
OutputStream out = new FileOutputStream(file);
out.write((pdfInfo.getTitle()+" "+pdfInfo.getAuthor()).getBytes());
纯手敲请采纳!!!
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
博思aippt
2024-07-20 广告
2024-07-20 广告
博思AIPPT是基于ai制作PPT的智能在线工具,它提供了4种AI制作PPT的方式,包括AI生成大纲、AI直接生成PPT、文本生成PPT、AI提炼word文档生成PPT,一站式集成多种AI生成PPT的方式,可满足办公用户的不同需求和使用场景...
点击进入详情页
本回答由博思aippt提供
展开全部
2.创建文件
//import java.io.*;
File myFilePath = new File("C:a.txt");
try {
if (!myFilePath.exists()) {
myFilePath.createNewFile();
}
FileWriter resultFile = new FileWriter(myFilePath);
PrintWriter myFile = new PrintWriter(resultFile);
myFile.println("输出的东西");
myFile.flush();
resultFile.close();
}
catch (Exception e) {
System.out.println("新建文件操作出错");
e.printStackTrace();
}
//import java.io.*;
File myFilePath = new File("C:a.txt");
try {
if (!myFilePath.exists()) {
myFilePath.createNewFile();
}
FileWriter resultFile = new FileWriter(myFilePath);
PrintWriter myFile = new PrintWriter(resultFile);
myFile.println("输出的东西");
myFile.flush();
resultFile.close();
}
catch (Exception e) {
System.out.println("新建文件操作出错");
e.printStackTrace();
}
本回答被网友采纳
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询