从 servlet 获取 jsp 页面的 Html
一个包含动态数据的jsp页面。
我想从 servlet 获取浏览器中显示的 jsp 页面的 html。
我想将jsp的html存储在一个字符串变量中。
是否可以从 servlet 获取 jsp 文件的 html 源。 如果是 。如何?
A jsp page in which dynamic datas are there.
I want to get the html of the jsp page which is shown in the browser , from the servlet.
I want to store the html of the jsp in a String variable.
is it possible to get the html source of the jsp file from a servlet.
If yes . How?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
使用 commons http 客户端,这有助于从 java 应用程序发出 GET 或 POST 请求。
您可以传递所需的所有数据,例如身份验证参数或会话 ID 等。
根据您的要求,您可以使用相同的内容获取完全呈现的 HTML 源内容。
可以在这里找到更多详细信息以及很好的示例
http://hc.apache。 org/httpclient-3.x/userguide.html
Use commons http client, which helps in making GET or POST requests from java application.
You can pass all the data required like authentication params or.. session id's etc.
As per your requirement you can get content of completely rendered HTML source using the same.
Much more details can be found here along with good examples
http://hc.apache.org/httpclient-3.x/userguide.html
除非我误解了你的问题,否则这只是使用
wget
或curl
命令(或 Windows 等效命令)来获取页面并将其保存在文件中的问题。(如果页面包含必须执行才能获取或呈现数据的 Javascript,则这将不起作用。对于该用例,请参阅 这个问题。)
Unless I'm misunderstanding your question, this is simply a matter of using the
wget
orcurl
command (or the Windows equivalent) to fetch the page and save it in a file.(This won't work if the page contains Javascript that must be executed in order to fetch or render the data. For that use-case, refer to the answers to this question.)