web-dev-qa-db-ja.com

java.lang.ClassCastException:com.Sun.net.ssl.internal.www.protocol.https.HttpsURLConnectionOldImplをjavax.net.ssl.HttpsURLConnectionにキャストできません

私の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で実行します)

13
libik

解決策は、この行を変更することです

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());
22
libik

代わりに単にHTTPプロトコル(HTTPSではなく)を使用している場合:

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

これを使って:

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

s」を「Http s URLConnection」にドロップするだけです

13
Realdo Dias

この種のエラーを回避するには、httpとhttpsの両方のURLにHttpUrlConnection(Java.net.HttpUrlConnection)を使用できます

HttpsUrlConnectionは、https接続に「使用できる」追加のメソッドのみを追加しますが、おそらくこれらのメソッドは使用しません。

GetInputStream()などの応答の読み取りを許可するメソッドを含むUrlConnectionから派生したHttpsUrlConnectionとHttpUrlConnectionの両方。 UrlConnectionから派生したHttpUrlConnectionから派生したHttpsUrlConnection。

Java.net.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()));
1
Nico

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

1
Sachin Panchal