Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我正在尝试找到一种方法来从远程 Web 应用程序中检索数据(xml 或 json 格式),然后在 Java 中解析相同的数据?有什么方法可以将 url 传递给远程主机,获取响应并以适合 Java 进一步处理的方式检索数据?
任何形式的帮助表示赞赏!
是的。您将发送一个 HTTP 请求,读取它的响应,然后解析它。这可以使用URLConnection来实现,或者如果您需要更大的灵活性,可以使用像 apache HttpCLient 这样的库。