如何在jsp中使用http请求来请求并获取网页
如何获取 xml 页面(我的意思是来自 Web 服务的 REST API)、解析它并将其显示在我的网站中的 jsp 中?
How do I get an xml page (I mean an REST API from an web service), parse it and display it in my website, in jsp?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
您需要使用一个库通过 HTTP 检索内容(HttpClient,例如示例)和解析响应的内容(SAX)。
避免使用 scriptlet 来执行此操作,将逻辑封装在类中并尝试创建 自定义标记,或者更好的是,尝试使用类似 Spring 的东西MVC。
You'll need to use a library to retrieve the content via HTTP (HttpClient, for example) and something to parse the response (SAX).
Avoid using scriptlets for doing this, encapsulate your logic in classes and try creating custom tags, or better yet, try using something like Spring's MVC.
我没有完整的答案,但至少这是如何获取网页的。我正在尝试做类似的事情,所以当我有更多的时候会回来。
I don't have the complete answer but here is how to get a web page at least. I'm trying to do something similar so will come back when I have more.