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

相关文章:

  • 2022-12-23
  • 2022-12-23
  • 2021-12-07
  • 2022-12-23
  • 2022-12-23
  • 2022-12-23
  • 2021-07-06
猜你喜欢
  • 2022-12-23
  • 2021-09-22
  • 2022-12-23
  • 2021-11-04
  • 2021-07-29
  • 2022-01-18
  • 2022-12-23
相关资源
相似解决方案