gpt4 book ai didi

java - 从我的响应数据中获取特定的字符串值

转载 作者:太空宇宙 更新时间:2023-11-04 13:15:47 25 4
gpt4 key购买 nike

我从我的java代码中获取响应数据,我按如下方式点击URL,

    String url = "http://www.google.com/search?q=mkyong";
URL obj = new URL(url);
HttpURLConnection con = (HttpURLConnection) obj.openConnection();

// optional default is GET
con.setRequestMethod("GET");

//add request header
con.setRequestProperty("User-Agent", USER_AGENT);

int responseCode = con.getResponseCode();
System.out.println("\nSending 'GET' request to URL : " + url);
System.out.println("Response Code : " + responseCode);

BufferedReader in = new BufferedReader(
new InputStreamReader(con.getInputStream()));
String inputLine;
StringBuffer response = new StringBuffer();

while ((inputLine = in.readLine()) != null) {
response.append(inputLine);
}
in.close();

//print result
System.out.println(response.toString());

我正在将 html 数据作为字符串值获取...

我想从此响应数据中获取隐藏值。

    <input type="hidden" name="HREF.DUMMY.MENSYS.1"
value="-X-tB--3TF8LlA02j-LKYRAT75rwYwwchuvSyZ9vWVwQ0"
id="url" />

如何获取这个值?

最佳答案

你可以,

只需在您的响应中使用以下代码即可,

    Document doc = Jsoup.connect(response.toString());
Element el= doc.select("type[hidden]");
Streing val = el.getAttr("value");

然后您可以从 doc 对象中找到您的元素。

关于java - 从我的响应数据中获取特定的字符串值,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/33540434/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com