有时下面的代码会失败,有时它会起作用。我正在使用Java8。是服务器端的问题吗?
线程“主”javax.net.ssl.SSLException 中的异常:不支持的记录版本 Unknown-0.0。
编辑:我从 JDK8 降级到 JDK7 并且它可以工作。我发现唯一可行的解决方案。
public static void main(String[] args) throws Exception {
URL u = new URL("https://c********.web.cddbp.net/webapi/xml/1.0/");
HttpURLConnection connection = (HttpURLConnection) u.openConnection();
connection.setDoOutput(true);
connection.setDoInput(true);
connection.setInstanceFollowRedirects(false);
connection.setRequestMethod("POST");
connection.setRequestProperty("Content-Type", "text/plain");
connection.setRequestProperty("charset", "utf-8");
connection.setRequestProperty("Content-Length", "" + 140);
connection.setUseCaches(false);
DataOutputStream wr = new DataOutputStream(connection.getOutputStream());
}