C# PDFbox读取PDF内容

来源:互联网 发布:java多线程并发执行 编辑:程序博客网 时间:2024/05/17 06:50
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"));        }    }}