使用 C# .net 添加规则并从 PDF 中提取文本
我想构建一个与此应用程序具有类似功能的 PDF 文本提取工具(A-PDF Data Extractor) http://www.a-pdf.com/data-extractor/index.htm
我计划在 c# .net 中执行此操作,所以我想构建自己的界面,类似于此应用程序购买引用此应用程序(dll 或 exe)。但它不允许我添加参考。
我该怎么做?有没有办法在我的 C# 桌面应用程序中运行另一个应用程序?
如果您有更好的选择,请告诉我
Thank You
任何帮助,我们将不胜感激!
I want to build a PDF text extraction tool having similar features to this application (A-PDF Data Extractor) http://www.a-pdf.com/data-extractor/index.htm
I am planning to do this in c# .net so I want to build my own interface similar to this app buy referencing this application(dll or exe). But it wont let me to add reference.
How can I do this ? Is there a way to run another application inside my c# desktop application ?
If you have a better options please let me know
Thank You
Any help is appreciate!!
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
如果要使用 exe 文件,则必须使用 .net Framework 中的 Process 类。
您在这里有一些示例: http://dotnetperls.com/process-start
如果您需要一个库来从pdf中提取文本尝试使用iTextSharp: http://www.codeproject.com/ KB/cs/PDFToText.aspx
希望这有帮助
If you want to use the exe file you must use the Process Class in the .net Framework.
You have some example here: http://dotnetperls.com/process-start
If you need a library to extract the text from the pdf try to use iTextSharp: http://www.codeproject.com/KB/cs/PDFToText.aspx
Hope this helps