请帮助mi们,我尝试使用vb.net桌面应用程序将pdf文件转换为文本, 我访问了很多网站,但他们提供了试用版软件 有什么解决方案可以解决这个问题吗?
我的页面流程如下: 1)用户从filebrowser中选择.PDF文件 2)然后只需点击“转换为文本文件”即可。按键 3)它将从路径打开相应的.POF文件并将其转换为.TXT文件并将其保存到特定的locaton
答案 0 :(得分:0)
包含此参考
pdfbox-1.8.9.dll
commons-logging.dll
fontbox-1.8.9.dll
IKVM.OpenJDK.Text.dll
IKVM.OpenJDK.Util.dll
IKVM.Runtime.dll
IKVM.OpenJDK.Core.dll
IKVM.OpenJDK.SwingAWT.dll
试试这段代码
Dim doc As PDDocument = Nothing
doc = PDDocument.load(input)
Dim stripper As New PDFTextStripper()
Dim textFormPdf =stripper.getText(doc)
doc.close()