6

Java で SSL ページを取得したいと思います。問題は、http プロキシに対して認証する必要があることです。

したがって、このページを取得する簡単な方法が必要です。Apache Commons httpclient を試してみましたが、問題に対してオーバーヘッドが大きすぎます。

このコードを試しましたが、認証アクションが含まれていません:

import java.io.*;
import java.net.*;

public class ProxyTest {

  public static void main(String[] args) throws ClientProtocolException, IOException {

    URL url = new URL("https://ssl.site");
    Socket s = new Socket("proxy.address", 8080);
    Proxy proxy = new Proxy(Proxy.Type.HTTP, s.getLocalSocketAddress());

    URLConnection connection = url.openConnection(proxy);
    InputStream inputStream = connection.getInputStream();
    BufferedReader br = new BufferedReader(new InputStreamReader(inputStream));
    String tmpLine = "";

    while ((tmpLine = br.readLine()) != null) {
      System.out.println(tmpLine);
    }

  }
}

簡単な方法でそれを実装する方法について、誰かが情報を提供できますか?

前もって感謝します

4

3 に答える 3

6

接続を開く前に、 java.net.Authenticatorを設定する必要があります。

...

public static void main(String[] args) throws Exception {
    // Set the username and password in a manner which doesn't leave it visible.
    final String username = Console.readLine("[%s]", "Proxy Username");
    final char[] password = Console.readPassword("[%s"], "Proxy Password:");

    // Use a anonymous class for our authenticator for brevity
    Authenticator.setDefault(new Authenticator() {
        protected PasswordAuthentication getPasswordAuthentication() {
            return new PasswordAuthentication(username, password);
        }
    });

    URL url = new URL("https://ssl.site");
    ...
}

終了後にオーセンティケーターを削除するには、次のコードを呼び出します。

Authenticator.setDefault(null);

Java SE 6 のオーセンティケーターはHTTP BasicHTTP Digest および を NTLMサポートしています。詳細については、sun.comにあるHTTP 認証のドキュメントを参照してください。

于 2009-02-19T09:54:59.227 に答える
4

org.apache.commons.httpclient.HttpClient はあなたの友達です。

http://hc.apache.org/httpclient-3.x/sslguide.htmlのサンプル コード

  HttpClient httpclient = new HttpClient();
  httpclient.getHostConfiguration().setProxy("myproxyhost", 8080);
  httpclient.getState().setProxyCredentials("my-proxy-realm", " myproxyhost",
  new UsernamePasswordCredentials("my-proxy-username", "my-proxy-password"));
  GetMethod httpget = new GetMethod("https://www.verisign.com/");
  try { 
    httpclient.executeMethod(httpget);
    System.out.println(httpget.getStatusLine());
  } finally {
    httpget.releaseConnection();
  }
于 2009-02-19T09:56:29.427 に答える