- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我在 Java-1.8 中使用 HttpsURLconnection 并使用一些参数发布到 URL。很多时候会收到 200 成功响应,但有时会收到 504 网关超时错误。
我为这个错误苦苦挣扎了很长时间。任何指导都会非常有帮助。下面是我正在使用的代码。
public static void sendPostRequest(String url, ResourceRequest resourceRequest,
ResourceResponse resourceResponse)
{
String token_response = "";
String grant_password = PrefsPropsUtil.getString("grant.type");
String client_id = PrefsPropsUtil.getString("client.id");
String user_name = PrefsPropsUtil.getString("user.name");
String client_secret = PrefsPropsUtil.getString("client.secret");
PrintWriter out = resourceResponse.getWriter();
URL obj = new URL(url);
System.setProperty("jdk.http.auth.proxying.disabledSchemes", "");
System.setProperty("jdk.http.auth.tunneling.disabledSchemes", "");
HttpsURLConnection con = (HttpsURLConnection) obj.openConnection();
//add request header
con.setRequestMethod("POST");
// con.setRequestProperty("User-Agent", USER_AGENT);
con.setRequestProperty("Accept-Language", "en-US,en;q=0.5");
String urlParameters = "grant_type=" + grant_password + "&client_id=" + client_id + "&username=&client_secret=" + client_secret;
// Send post request
con.setDoOutput(true);
DataOutputStream wr = new DataOutputStream(con.getOutputStream());
wr.writeBytes(urlParameters);
wr.flush();
wr.close();
int responseCode = con.getResponseCode();
BufferedReader in = new BufferedReader(
new InputStreamReader(con.getInputStream()));
String inputLine;
StringBuffer response = new StringBuffer();
while ((inputLine = in.readLine()) != null) {
response.append(inputLine);
}
in.close();
con.disconnect();
//print result
System.out.println(response.toString());
out.println(response);
}
上面的代码我不知道哪里错了,请指正。
最佳答案
5xx
代码被视为服务器错误。因此,这很可能不是请求方的问题。
504 Gateway Timeout: The server was acting as a gateway or proxy and did not receive a timely response from the upstream server.
我建议您检查服务器的代理设置是否正确或上游服务器的稳定性等。从 HttpsURLconnection
中可以说的不多,它看起来很通用。
关于java - HttpsURLConnection 频繁出现 504 错误,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/57329157/
我有一个包含值的字符串数组(duh...)。 有没有一种简单的方法可以获取出现次数最多的条目?有点像 values[37].getMostOften(); 干杯:) 最佳答案 您可以使用GroupBy
我目前正在将一款用 C#(适用于 Windows Phone)开发的游戏移植到 Java (Android)。 我们在 Java 版本中遇到了内存问题,在分析之后,似乎是由于内存中的大量 String
对于播放音频文件的 iPhone 应用程序,我正在开发一个系统来跟踪用户在他们听过的任何一集中的进度(例如,他们听 file1 的前 4:35,然后开始另一个文件,然后返回到文件 1,它从 4:35
如果您按下 UIbutton 显示 UITextView,将请求代码 Ì 再次按下 UIbutton 再次显示 UITextView :/ 最佳答案 .h 文件中只有一个 int 变量,如下所示..
我在 Application_End 上处理的项目中使用临时数据库: protected void Application_End() { if (_db != null) _db.Dispo
我是一名优秀的程序员,十分优秀!