gpt4 book ai didi

java - HttpsURLConnection 中的什么方法调用实际发送了 HTTP 请求?

转载 作者:搜寻专家 更新时间:2023-11-01 08:49:57 24 4
gpt4 key购买 nike

编辑:既然我已经弄清楚了一些行为,我想知道,为什么在我调用 flush 后它没有立即发送请求()?或 close()?为什么它要等到我调用 getResponseCode()


原始问题:

我是 java 中的 HttpsURLConnection 类的新手,查看文档后发现它不是很有启发性。我在我正在从事的项目中继承了这段代码(我不是自己写的)并且想知道它在做什么,以及如何改进它。例如,我无法判断“writeBytes”是否真的发送了数据或“关闭”。我查看了许多 javadoc,发现它们含糊不清,并且没有在书籍或在线博客文章中找到任何关于该主题的好资源。有人可以启发我,或者为我指出一些好的资源吗?

顺便说一下,这段代码适用于我正在处理的 android SDK 库。

注意:我很了解HTTP请求的理论。我上了一个类。我知道所有关于 URL 参数(使用 ?name=value)和 cookies 和 RESTful 服务以及 TCP 和 IP 等。只是努力寻找好的文档所以我知道如何使用 java 库。

编辑:将其更改为 HttpClient 代码,因为事实证明我无法使用 Https,但仍然看到来自回显服务器的请求。虽然它有相同的想法。

import java.io.BufferedInputStream;
import java.io.DataOutputStream;
import java.io.IOException;
import java.io.InputStream;
import java.net.HttpURLConnection;
import java.net.MalformedURLException;
import java.net.URL;

public class HttpClient
{
public static final String DEBUG_URL = "http://10.20.1.61:8001/api/ad/v5/";
public static final String MAPPED_KEYWORDS = "get_mapped_keywords/";

private static byte[] buffer = new byte[1024];

static NetworkReturn sendHttpPost(String urlString, String postData)
{
URL url;
HttpURLConnection con = null;

try {
url = new URL(urlString);
con = (HttpURLConnection) url.openConnection();

con.setRequestMethod("POST");
con.setRequestProperty("Content-length", String.valueOf(postData.length()));
con.setRequestProperty("Content-Type", "application/json");
con.setDoOutput(true);

DataOutputStream output = new DataOutputStream(con.getOutputStream());

output.writeBytes(postData);
output.close();

StringBuilder result = new StringBuilder(), error = new StringBuilder();

int responseCode = con.getResponseCode();
if (responseCode >= 200 && responseCode < 300)
{
if (con.getInputStream() != null)
{
InputStream in = new BufferedInputStream(con.getInputStream());
int length;
while ((length = in.read(buffer)) != -1)
{
result.append(new String(buffer, 0, length));
}
}
}
else
{
if (con.getErrorStream() != null)
{
InputStream in = new BufferedInputStream(con.getErrorStream());
int length;
while ((length = in.read(buffer)) != -1)
{
error.append(new String(buffer, 0, length));
}
}
}
return new NetworkReturn(responseCode, result.toString(), error.toString());

}
catch (MalformedURLException e) {
return new NetworkReturn(-1, "", "MalformedURLException: " + e.getLocalizedMessage());
}
catch (IOException e) {
e.printStackTrace();
return new NetworkReturn(-1, "", "IOEXCEPTION: " + e.getLocalizedMessage());
}
finally {
if (con != null)
con.disconnect();
}
}
}

最佳答案

您调用的第一个从服务器获取输入的方法将设置内容长度 header 并写入输出。这可能是 getResponseCode() 或 getInputStream(),或者可能是 getErrorStream()。

如果您使用固定长度或分块传输模式,则直接写入。

关于java - HttpsURLConnection 中的什么方法调用实际发送了 HTTP 请求?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/24520528/

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