0

我正在使用 java Proxy 类并将其传递给 HttpURLConnection.openConnection()。
有没有办法向 Proxy 类提供身份验证信息(就像 http.proxyUser 和 http.proxyPassword)?
谢谢

4

1 回答 1

2

您可以为此目的使用Authenticator :

Authenticator.setDefault(new Authenticator() {

        @Override
        protected PasswordAuthentication getPasswordAuthentication() {
                return new PasswordAuthentication("login", "password".toCharArray());
        }
});
于 2012-05-23T10:30:58.177 回答