在线时间:8:00-16:00
迪恩网络APP
随时随地掌握行业动态
扫描二维码
关注迪恩网络微信公众号
using System; using System.Windows.Forms; using org.apache.pdfbox.pdmodel; using org.apache.pdfbox.util; using System.IO; namespace ReadPDF { public partial class Form2 : Form { public Form2() { InitializeComponent(); } public static void pdf2txt(FileInfo pdffile) { PDDocument doc = PDDocument.load(pdffile.FullName); PDFTextStripper pdfStripper = new PDFTextStripper(); string text = pdfStripper.getText(doc); } private void button1_Click(object sender, EventArgs e) { pdf2txt(new FileInfo(@"e:/5.pdf")); } } }
原文:https://blog.csdn.net/wk125570/article/details/75099051?utm_source=copy |
请发表评论