从 servlet 获取 jsp 页面的 Html

发布于 2024-10-08 01:08:09 字数 148 浏览 0 评论 0原文

一个包含动态数据的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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

×纯※雪 2024-10-15 01:08:09

使用 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

剪不断理还乱 2024-10-15 01:08:09

除非我误解了你的问题,否则这只是使用 wgetcurl 命令(或 Windows 等效命令)来获取页面并将其保存在文件中的问题。

(如果页面包含必须执行才能获取或呈现数据的 Javascript,则这将不起作用。对于该用例,请参阅 这个问题。)

Unless I'm misunderstanding your question, this is simply a matter of using the wget or curl 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.)

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文