并没有真正在 Java 中工作(因此可能有更好的方法),但我在写一篇关于同一主题的博客文章时确实遇到了类似的问题。这就是我发现错误详细信息的方式:
假设 con 是您的 HttpsURLConnection 对象:
int responseCode = con.getResponseCode();
InputStream errorStream = con.getErrorStream();//Get the error stream
if (errorStream != null) {//Read the detailed error message from the stream
String detailedErrorMessage = getStringFromInputStream(errorStream);
System.out.println(detailedErrorMessage);
}
这是getStringFromInputStream方法的实现:
// Source - http://www.mkyong.com/java/how-to-convert-inputstream-to-string-in-java/
private static String getStringFromInputStream(InputStream is) {
BufferedReader br = null;
StringBuilder sb = new StringBuilder();
String line;
try {
br = new BufferedReader(new InputStreamReader(is));
while ((line = br.readLine()) != null) {
sb.append(line);
}
} catch (IOException e) {
e.printStackTrace();
} finally {
if (br != null) {
try {
br.close();
} catch (IOException e) {
e.printStackTrace();
}
}
}
return sb.toString();
}
这是我写的一个通用的 post 方法:
private static int processPostRequest(URL url, byte[] data, String contentType, String keyStore, String keyStorePassword) throws UnrecoverableKeyException, KeyManagementException, KeyStoreException, NoSuchAlgorithmException, IOException, ProtocolException {
SSLSocketFactory sslFactory = getSSLSocketFactory(keyStore, keyStorePassword);
HttpsURLConnection con = null;
con = (HttpsURLConnection) url.openConnection();
con.setSSLSocketFactory(sslFactory);
con.setDoOutput(true);
con.setRequestMethod("POST");
con.addRequestProperty("x-ms-version", "2013-08-01");
con.setRequestProperty("Content-Length", String.valueOf(data.length));
con.setRequestProperty("Content-Type", contentType);
DataOutputStream requestStream = new DataOutputStream (con.getOutputStream());
requestStream.write(data);
requestStream.flush();
requestStream.close();
int responseCode = con.getResponseCode();
InputStream errorStream = con.getErrorStream();
if (errorStream != null) {
String detailedErrorMessage = getStringFromInputStream(errorStream);
System.out.println(detailedErrorMessage);
}
return responseCode;
}