gpt4 book ai didi

Java连接Http用什么方法?

转载 作者:行者123 更新时间:2023-11-29 04:01:50 25 4
gpt4 key购买 nike

我一直在寻找连接到 URL 的不同方式,似乎有几种。

我的要求是对 URL 执行 POST 和 GET 查询并检索结果。

我见过

URL class
DefaultHttpClient class
HttpClient - apache commons

哪种方法最好?

最佳答案

我的经验法则和建议:不要引入依赖项和第 3 方库,如果没有它很容易摆脱。

在这种情况下,我会说,如果您需要效率,例如每个已建立的连接 session 处理多个请求或 cookie 支持等,请选择 HTTPClient .

如果您只需要执行 HTTP get,这就足够了:

Getting Text from a URL

try {
// Create a URL for the desired page
URL url = new URL("http://hostname:80/index.html");

// Read all the text returned by the server
BufferedReader in = new BufferedReader(new InputStreamReader(url.openStream()));
String str;
while ((str = in.readLine()) != null) {
// str is one line of text; readLine() strips the newline character(s)
}
in.close();
} catch (MalformedURLException e) {
} catch (IOException e) {
}

Sending a POST Request Using a URL

try {
// Construct data
String data = URLEncoder.encode("key1", "UTF-8") + "=" + URLEncoder.encode("value1", "UTF-8");
data += "&" + URLEncoder.encode("key2", "UTF-8") + "=" + URLEncoder.encode("value2", "UTF-8");

// Send data
URL url = new URL("http://hostname:80/cgi");
URLConnection conn = url.openConnection();
conn.setDoOutput(true);
OutputStreamWriter wr = new OutputStreamWriter(conn.getOutputStream());
wr.write(data);
wr.flush();

// Get the response
BufferedReader rd = new BufferedReader(new InputStreamReader(conn.getInputStream()));
String line;
while ((line = rd.readLine()) != null) {
// Process line...
}
wr.close();
rd.close();
} catch (Exception e) {
}

这两种方法都很有效。 (我什至用 cookie 完成了手动获取/发布。)

关于Java连接Http用什么方法?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/2983203/

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