3

私はsilvertunnelライブラリを見ていましたが、接続を成功させるのに苦労していました。私が抱えている問題は、接続が出力を提供するのに10分以上かかることです。私は彼らのテストの1つを調べていました、そしてこれは私のコードです:

public boolean tryConnOLD() throws IOException {

    try {
        // define remote address
        String remoteHostname = "http://test.silvertunnel.com";
        int remotePort = 80;
        TcpipNetAddress remoteAddress = new TcpipNetAddress(remoteHostname, remotePort);
        // get TorNetLayer instance and wait until it is ready
        NetLayer netLayer = NetFactory.getInstance().getNetLayerById(NetLayerIDs.TOR);
        netLayer.waitUntilReady();
        // open connection to remote address - this connection is tunneled through the TOR anonymity network
        netSocket = netLayer.createNetSocket(null, null, remoteAddress);
        InputStream is = netSocket.getInputStream();

        String content = CharStreams.toString(new InputStreamReader(is, Charsets.UTF_8));
        Closeables.closeQuietly(is);

        is.close();
        System.out.println(is.read());
        java.util.Scanner s = new java.util.Scanner(is).useDelimiter("\\A");

        if(s.hasNext()) {
         System.out.println(s.next());   
         System.out.println();   
        }

        return true;

    } catch (IOException ex) {

    } finally {
        netSocket.close();
    }

    return false;
}
4

1 に答える 1

3

問題は非常に単純です。silvertunnel API を使用する場合、URL でプロトコルを指定する必要がないため、削除するだけでhttp://エラーが修正されます。

以下を試してください

                        //remove http://   
String remoteHostname = "test.silvertunnel.com";
于 2013-02-12T13:15:28.463 に答える