netbeans java.lang.ClassCastException:无法将旧实现强制转换为javax.net.ssl.HttpsURLConnection

3lxsmp7m  于 2022-11-10  发布在  Java
关注(0)|答案(4)|浏览(219)

我在我的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运行)

jmo0nnb3

jmo0nnb31#

解决方法是更改此行

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());
agxfikkp

agxfikkp2#

如果您只是使用HTTP协议(而不是HTTPS),而不是:
();();();
使用此选项:
();();();();
只需将“s”放到“HttpsURLConnection”中即可

jqjz2hbq

jqjz2hbq3#

为了避免这种错误,可以对http和https URL使用HttpUrlConnection(java.net.HttpUrlConnection
HttpsUrlConnection只添加了“可用于”https连接额外方法,但您可能不会使用这些方法。
HttpUrlConnection和HttpUrlConnection都派生自UrlConnection,UrlConnection包含允许读取响应的方法,如getInputStream()。HttpUrlConnection派生自HttpUrlConnection,而HttpUrlConnection派生自UrlConnection。
HttpUrlConnection只是添加了与http协议相关方法(这些方法适用于https)
https://docs.oracle.com/javase/8/docs/api/java/net/HttpURLConnection.htmlhttps://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()));
jgwigjjp

jgwigjjp4#

如果url以“https”开头,则调用

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

使用netty-3.9.2〉.jar来解决这个问题当你使用这个netty. jar.后调用的过程改变了。
http://dl.bintray.com/netty/downloads/netty-3.9.12.Final.tar.bz2

相关问题