Html,处理 JSON 响应

发布于 2024-09-03 18:16:13 字数 83 浏览 4 评论 0原文

我有一个页面在 HtmlUnit 中作为 UnexpectedPage 返回,响应是 JSON。我可以使用 HTMLUnit 来解析它还是需要额外的库?

I have a page that comes back as an UnexpectedPage in HtmlUnit, the response is JSON. Can I use HTMLUnit to parse this or will I need an additional library?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(2

深海夜未眠 2024-09-10 18:16:13

HtmlUnit 不支持它。它最多可以执行一个JS函数。您需要事先检查返回响应的 Content-Type 是否与 application/json 匹配,然后使用合适的工具对其进行解析。 Google Gson 在这方面很有用。

WebClient client = new WebClient();
Page page = client.getPage("https://stackoverflow.com/users/flair/97901.json");
WebResponse response = page.getWebResponse();
if (response.getContentType().equals("application/json")) {
    String json = response.getContentAsString();
    Map<String, String> map = new Gson().fromJson(json, new TypeToken<Map<String, String>>() {}.getType());
    System.out.println(map.get("displayName")); // Benju
}

如果事先知道 JSON 结构,您甚至可以使用 Gson 将其转换为完整的 Javabean。您可以在此答案中找到示例。

HtmlUnit doesn't support it. It can at highest execute a JS function. You need to check beforehand if the Content-Type of the returned response matches application/json and then use the suitable tool to parse it. Google Gson is useful in this.

WebClient client = new WebClient();
Page page = client.getPage("https://stackoverflow.com/users/flair/97901.json");
WebResponse response = page.getWebResponse();
if (response.getContentType().equals("application/json")) {
    String json = response.getContentAsString();
    Map<String, String> map = new Gson().fromJson(json, new TypeToken<Map<String, String>>() {}.getType());
    System.out.println(map.get("displayName")); // Benju
}

If the JSON structure is known beforehand, you can even use Gson to convert it to a fullworthy Javabean. You can find an example in this answer.

祁梦 2024-09-10 18:16:13

BalusC 提供了一个很好的答案,但是要回答字面上的问题,您实际上并不需要额外的库:您可以使用 Groovy 简洁的内置 JsonSlurper,例如:

 def jsonSlurper = new groovy.json.JsonSlurper()
 def parsed = jsonSlurper.parseText(response.getContentAsString())
 println("Found ${parsed.TotalCount} records.");

打印出 1 以获得这样的响应作为

'{"Records":[{"ID":"123","Address":"Zagreb",],"TotalCount":1}'

BalusC provided a good answer, but to answer the literal question, you don't really need an additional library: you can use Groovy's neat built-in JsonSlurper, e.g:

 def jsonSlurper = new groovy.json.JsonSlurper()
 def parsed = jsonSlurper.parseText(response.getContentAsString())
 println("Found ${parsed.TotalCount} records.");

to print out 1 for a response such as

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