使用 TWebBrowser 获取发布到网站后返回的 PDF
我正在使用 Delphi 2007。我可以使用 WebBrowser.Navigate 成功地将数据发布到网站,但之后,当该网站返回 PDF 时,当它出现在浏览器的屏幕上时,我无法弄清楚如何以编程方式获取 PDF 。我可以使用 Document.Body.InnerHTML 查看一些文本和 HTML,但不能查看 PDF。有人可以演示如何获取 POST 之后出现的 PDF 吗?
谢谢你!
I am using Delphi 2007. I can successfully Post data to a web site using WebBrowser.Navigate, but afterwards, when that site returns a PDF, while it appears on the screen of the Browser, I cannot figure out how to acquire the PDF programmatically. I can see some text and HTML using Document.Body.InnerHTML, but not the PDF. Can someone demonstrate how to acquire the PDF which appears after the POST?
Thank yoU!
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
为了在网络浏览器中从 PDF 中获取文本,我找到了一个使用名为 PushKeys 将按键发送到网络浏览器以选择所有文本 (Control+A),将其复制到剪贴板 (Control< /kbd>+C),然后使用
PasteFromClipBoard
将其粘贴到TMemo
或其他控件。于 D2007 进行测试。To get the text out of a PDF in the web browser, I found a solution using an open source unit called PushKeys to send keys to the web browser to select all the text (Control+A), copy it to the clipboard (Control+C) and then paste it to a
TMemo
or other control usingPasteFromClipBoard
. Tested in D2007.您可以使用 IE4+ 选项来使用您自己的协议捕获所有互联网流量。您甚至可以挂接 http (IIRC) 协议,并且在需要加载数据时使用 WIndows 函数和/或 Indy 组件。
这是一个这样做的单位:
You could use an IE4+ option for capturing all internet traffic using your own protocol. You can even hook the protocol http (IIRC) and when you need to load the data use the WIndows functions and/or Indy components.
This is a unit to do so: