gpt4 book ai didi

Java HTTPUrlConnection 返回 500 状态码

转载 作者:塔克拉玛干 更新时间:2023-11-03 04:05:12 25 4
gpt4 key购买 nike

我正在尝试使用 HTTPUrlConnection 获取一个 url,但是我总是得到一个 500 代码,但是当我尝试从浏览器或使用 curl 访问相同的 url 时,它工作正常!

这是代码

try{
URL url = new URL("theurl");
HttpURLConnection httpcon = (HttpURLConnection) url.openConnection();
httpcon.setRequestProperty("Accept", "text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8");
httpcon.setRequestProperty("User-Agent", "Mozilla/5.0 (Macintosh; Intel Mac OS X 10.6; rv:14.0) Gecko/20100101 Firefox/14.0.1");
System.out.println(httpcon.getHeaderFields());
}catch (Exception e) {
System.out.println("exception "+e);
}

当我打印 headerfields 时,它显示 500 代码。当我将 URL 更改为其他内容(如 google.com )时,它工作正常。但我不明白为什么它在这里不起作用,但它在浏览器和 curl 上运行良好。

任何帮助将不胜感激..

谢谢,

最佳答案

这主要是由于编码而发生的。如果您使用的浏览器正常,但在您的程序中出现 500(内部服务器错误),那是因为浏览器具有关于字符集和内容类型的高度复杂的代码。

这是我的代码,它适用于 ISO8859_1 作为字符集和英语的情况。

public void sendPost(String Url, String params) throws Exception {


String url=Url;
URL obj = new URL(url);
HttpsURLConnection con = (HttpsURLConnection) obj.openConnection();

con.setRequestProperty("Acceptcharset", "en-us");
con.setRequestProperty("Accept-Language", "en-US,en;q=0.5");
con.setRequestProperty("charset", "EN-US");
con.setRequestProperty("Accept", "text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8");
String urlParameters=params;
// Send post request
con.setDoOutput(true);
con.setDoInput(true);
con.connect();
//con.

DataOutputStream wr = new DataOutputStream(con.getOutputStream());
wr.writeBytes(urlParameters);
wr.flush();
wr.close();

int responseCode = con.getResponseCode();
System.out.println("\nSending 'POST' request to URL : " + url);
System.out.println("Post parameters : " + urlParameters);
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());
this.response=response.toString();
con.disconnect();

}

在主程序中,这样调用:

myclassname.sendPost("https://change.this2webaddress.desphilboy.com/websitealias/orwebpath/someaction","paramname="+URLEncoder.encode(urlparam,"ISO8859_1"))

关于Java HTTPUrlConnection 返回 500 状态码,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/11721821/

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