使用 Java 代码将 JSP 页面转换为静态 HTML
如何使用 Java 代码将动态 JSP 页面保存为静态 HTML 页面?
我想将 JSP 输出保存到 HTML 页面并将其保存在本地计算机上。
How do I save a dynamic JSP page to a static HTML page using Java code?
I want to save JSP output to an HTML page and save it on the local machine.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
编写一个 Java 客户端应用程序,执行类似的操作...
Write a Java client application that does something like this...
一旦客户端收到 JSP 页面,服务器就已经执行了所有“动态内容”。因此,只需使用
URL
类将网页下载到例如String
中,然后将此String
写入文件即可。 (无论如何,您都不会获得动态部分。)相关问题(甚至可能重复):
Once the client receives the JSP page the server has already performed all the "dynamic stuff". So, just download the web page into for instance a
String
using, say, theURL
class, and write thisString
out to a file. (You won't get the dynamic parts anyway.)Related question (possibly even duplicates):