java.lang.ClassCastException:com.sun.net.ssl.internal.www.protocol.https.HttpsURLConnectionOldImpl 无

Posted

技术标签:

【中文标题】java.lang.ClassCastException:com.sun.net.ssl.internal.www.protocol.https.HttpsURLConnectionOldImpl 无法转换为 javax.net.ssl.HttpsURLConnection【英文标题】:java.lang.ClassCastException: com.sun.net.ssl.internal.www.protocol.https.HttpsURLConnectionOldImpl cannot be cast to javax.net.ssl.HttpsURLConnection 【发布时间】:2014-06-24 09:23:37 【问题描述】:

我在我的 Netbeans 7.4 中尝试了这段代码,它没有问题

import java.io.IOException;
import java.net.URL;
import javax.net.ssl.HttpsURLConnection;

public class JavaApplication148 
    public static void main(String[] args) throws IOException 
        URL url = new URL("https://redmine.ackee.cz/time_entries.xml");
        HttpsURLConnection httpCon = (HttpsURLConnection) url.openConnection();
    

然后我在我的 Maven 驱动项目中的 Eclipse 中使用它并引发以下异常:

java.lang.ClassCastException: com.sun.net.ssl.internal.www.protocol.https.HttpsURLConnectionOldImpl 
cannot be cast to javax.net.ssl.HttpsURLConnection

这是我的 maven 项目中引发错误的以下类

package cz.ackee.redmine.commands;

import java.io.IOException;
import java.net.URL;
import javax.net.ssl.HttpsURLConnection;

public abstract class RedmineCommand       
    public void write(String xmlAddress, String text, String requestMethod) throws IOException         
         URL url = new URL("https://redmine.xxx.cz/time_entries.xml");
         HttpsURLConnection httpCon = (HttpsURLConnection) url.openConnection(); //this line throws exception
           

这是我的 pom.xml

<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
    xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
    <modelVersion>4.0.0</modelVersion>
    <groupId>cz.ackee</groupId>
    <artifactId>pan-unicorn-bot</artifactId>
    <version>0.0.1-SNAPSHOT</version>
    <name>Pan Unicorn Bot</name>
    <description>Pan unicorn IRC Bot</description>

  <repositories>
  <repository>
    <id>apache-snapshots</id>
    <url>http://repository.apache.org/snapshots/</url>
  </repository>
  </repositories>

    <dependencies>
        <dependency>
            <groupId>mysql</groupId>
            <artifactId>mysql-connector-java</artifactId>
            <version>5.1.30</version>
        </dependency>

        <dependency>
            <groupId>org.hibernate</groupId>
            <artifactId>hibernate-core</artifactId>
            <version>4.3.5.Final</version>
        </dependency>

        <dependency>
            <groupId>org.apache.commons</groupId>
            <artifactId>commons-cli</artifactId>
            <version>1.3-SNAPSHOT</version>
        </dependency>

        <dependency>
            <groupId>com.taskadapter</groupId>
            <artifactId>redmine-java-api</artifactId>
            <version>1.23</version>
        </dependency>
    </dependencies>

  <properties>
    <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
    <project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
  </properties>

    <build>
        <plugins>
            <plugin>
                <artifactId>maven-compiler-plugin</artifactId>
                <groupId>org.apache.maven.plugins</groupId>
                <version>2.3</version>
                <configuration>
                    <source>1.7</source>
                    <target>1.7</target>
                    <downloadSources>true</downloadSources>
                    <downloadJavadocs>true</downloadJavadocs>
                </configuration>
            </plugin>

            <plugin>
                <artifactId>maven-assembly-plugin</artifactId>
                <version>2.2.1</version>
                <configuration>
                    <descriptors>
                        <descriptor>/src/main/assembly/binary.xml</descriptor>
                    </descriptors>
                </configuration>
                <executions>
                    <execution>
                        <id>make-assembly</id>
                        <phase>package</phase>
                        <goals>
                            <goal>single</goal>
                        </goals>
                    </execution>
                </executions>
            </plugin>
            <plugin>
                <groupId>org.apache.maven.plugins</groupId>
                <artifactId>maven-jar-plugin</artifactId>
                <version>2.3.2</version>
                <configuration>
                    <archive>
                        <index>true</index>
                        <manifest>
                            <addClasspath>true</addClasspath>
                            <mainClass>cz.ackee.unicorn.PanUnicornMain</mainClass>
                        </manifest>
                        <manifestEntries>
                            <mode>development</mode>
                            <url>$project.url</url>
                            <key>value</key>
                        </manifestEntries>
                    </archive>
                </configuration>

            </plugin>
        </plugins>
    </build>

</project>

任何想法,为什么它在 netbeans 上编译和运行没有问题,为什么它在 maven-eclipse 项目上运行不佳?

(我使用mvn package通过命令行编译,我通过eclipse运行)

【问题讨论】:

我猜你的类路径有所不同。 类路径到底是什么? 【参考方案1】:

解决办法就是改这一行

URL url = new URL("https://redmine.xxx.cz/time_entries.xml");

进入这一行

URL url = new URL(null, "https://redmine.xxx.cz/time_entries.xml", new sun.net.www.protocol.https.Handler());

【讨论】:

我在最新的月食中遇到了同样的异常。你的解决方案对我有用。 请不要使用此解决方案。这是使用特定处理程序实现的解决方法。这可能会阻止您的代码在不同的 JRE/JDK(供应商和/或版本)上运行。更多信息在这里:community.oracle.com/thread/1535882 和 community.oracle.com/thread/1150553【参考方案2】:

如果您只是使用HTTP 协议(不是HTTPS),而不是:

HttpsURLConnection httpCon = (HttpsURLConnection) url.openConnection();

使用这个:

HttpURLConnection httpCon = (HttpURLConnection) url.openConnection();

只需在“HttpsURLConnection”中删除“s

【讨论】:

赞成,因为这是我一直在寻找的。但这仅在协议为 http 时才有效,例如:http://www.mywebsite.com注意 http),而不是在安全协议 https 中(如 OP 案例)。 HttpURLConnection 也适用于 https url,正如我在回答中解释的那样【参考方案3】:

如果url以“https”开头就调用

    if(url.startswith("https") HttpsURLConnection httpCon = (HttpsURLConnection) url.openConnection(); 

使用 netty-3.9.2 > .jar 来解决这个问题 当你使用这个 netty.jar 时。 post call的流程发生了变化。

http://dl.bintray.com/netty/downloads/netty-3.9.12.Final.tar.bz2

【讨论】:

虽然此链接可能会回答问题,但最好在此处包含答案的基本部分并提供链接以供参考。如果链接页面发生更改,仅链接的答案可能会失效【参考方案4】:

为避免此类错误,您可以对 http 和 https url 使用 HttpUrlConnection (java.net.HttpUrlConnection)

HttpsUrlConnection 仅添加“可用于”https 连接的额外方法,但您可能不会使用这些方法。

HttpsUrlConnection 和 HttpUrlConnection 都派生自 UrlConnection,其中包含允许读取响应的方法,例如 getInputStream()。 HttpsUrlConnection 继承自 HttpUrlConnection 继承自 UrlConnection。

java.net.HttpUrlConnection 只是添加了与http协议相关的方法(这些方法适用于https)

https://docs.oracle.com/javase/8/docs/api/java/net/HttpURLConnection.html https://docs.oracle.com/javase/8/docs/api/javax/net/ssl/HttpsURLConnection.html

因此你可以这样做:

URL url = new URL(urlString);
HttpURLConnection con = (HttpURLConnection) url.openConnection();
con.setRequestMethod("GET");
BufferedReader in = new BufferedReader(new InputStreamReader(con.getInputStream()));

您也可以这样做并获得相同的结果,连接将是相同的:

URL url = new URL(urlString);
HttpsURLConnection con = (HttpsURLConnection) url.openConnection();
con.setRequestMethod("GET");
BufferedReader in = new BufferedReader(new InputStreamReader(con.getInputStream()));

【讨论】:

以上是关于java.lang.ClassCastException:com.sun.net.ssl.internal.www.protocol.https.HttpsURLConnectionOldImpl 无的主要内容,如果未能解决你的问题,请参考以下文章