如何使 HttpURLConnection 使用代理?

2022-08-31 07:25:40

如果我这样做...

conn = new URL(urlString).openConnection();
System.out.println("Proxy? " + conn.usingProxy());

它打印

Proxy? false

问题是,我在代理后面。JVM从Windows上的什么位置获取其代理信息?如何进行设置?我的所有其他应用程序似乎都对我的代理非常满意。


答案 1

从java 1.5开始,您还可以将java.net.Proxy实例传递给openConnection(proxy)方法:

//Proxy instance, proxy ip = 10.0.0.1 with port 8080
Proxy proxy = new Proxy(Proxy.Type.HTTP, new InetSocketAddress("10.0.0.1", 8080));
conn = new URL(urlString).openConnection(proxy);

如果您的代理需要身份验证,它将为您提供响应407。

在这种情况下,您将需要以下代码:

    Authenticator authenticator = new Authenticator() {

        public PasswordAuthentication getPasswordAuthentication() {
            return (new PasswordAuthentication("user",
                    "password".toCharArray()));
        }
    };
    Authenticator.setDefault(authenticator);

答案 2

从互联网上回答这个问题相当容易。设置系统属性和 。您可以使用 执行此操作,也可以使用语法从命令行执行此操作。编辑:每个评论,设置和HTTPS。http.proxyHosthttp.proxyPortSystem.setProperty()-Dhttps.proxyPorthttps.proxyHost


推荐