如何在jsp中使用http请求来请求并获取网页

发布于 2024-10-20 05:42:51 字数 67 浏览 1 评论 0原文

如何获取 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 技术交流群。

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

发布评论

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

评论(2

人│生佛魔见 2024-10-27 05:42:51

您需要使用一个库通过 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.

一瞬间的火花 2024-10-27 05:42:51

我没有完整的答案,但至少这是如何获取网页的。我正在尝试做类似的事情,所以当我有更多的时候会回来。

<%@page import="java.net.*" %>
<%@page import="java.io.*" %>

<%
   URL dest = new URL("http://www.yahoo.com/");
   URLConnection yc = dest.openConnection();
   BufferedReader in = new BufferedReader(
                           new InputStreamReader(
                           yc.getInputStream()));
   String inputLine;

   while ((inputLine = in.readLine()) != null)
       System.out.println(inputLine);
   in.close();
%>

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.

<%@page import="java.net.*" %>
<%@page import="java.io.*" %>

<%
   URL dest = new URL("http://www.yahoo.com/");
   URLConnection yc = dest.openConnection();
   BufferedReader in = new BufferedReader(
                           new InputStreamReader(
                           yc.getInputStream()));
   String inputLine;

   while ((inputLine = in.readLine()) != null)
       System.out.println(inputLine);
   in.close();
%>
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文