如何配置用户名和密码以使用Java验证http代理服务器?
我刚刚找到以下配置参数:
http.proxyHost=<proxyAddress>
http.proxyPort=<proxyPort>
https.proxyHost=<proxyAddress>
https.proxyPort=<proxyPort>
但是,我的代理服务器需要身份验证。如何配置我的应用程序以使用代理服务器?
答案 0 :(得分:73)
(编辑:正如OP指出的那样,使用java.net.Authenticator
也是必需的。为了正确起见,我正在更新我的答案。)
要进行身份验证,请使用java.net.Authenticator
设置代理的配置并设置系统属性http.proxyUser
和http.proxyPassword
。
final String authUser = "user";
final String authPassword = "password";
Authenticator.setDefault(
new Authenticator() {
@Override
public PasswordAuthentication getPasswordAuthentication() {
return new PasswordAuthentication(
authUser, authPassword.toCharArray());
}
}
);
System.setProperty("http.proxyUser", authUser);
System.setProperty("http.proxyPassword", authPassword);
答案 1 :(得分:31)
你快到了,你只需追加:
-Dhttp.proxyUser=someUserName
-Dhttp.proxyPassword=somePassword
答案 2 :(得分:29)
http://rolandtapken.de/blog/2012-04/java-process-httpproxyuser-and-httpproxypassword说:
其他建议使用自定义默认身份验证器。但这很危险,因为这会将密码发送给任何要求的人。
如果某些http / https请求没有通过代理(这很可能取决于配置),这是相关的。在这种情况下,您可以将凭据直接发送到某个http服务器,而不是代理服务器。
他建议以下修复。
// Java ignores http.proxyUser. Here come's the workaround.
Authenticator.setDefault(new Authenticator() {
@Override
protected PasswordAuthentication getPasswordAuthentication() {
if (getRequestorType() == RequestorType.PROXY) {
String prot = getRequestingProtocol().toLowerCase();
String host = System.getProperty(prot + ".proxyHost", "");
String port = System.getProperty(prot + ".proxyPort", "80");
String user = System.getProperty(prot + ".proxyUser", "");
String password = System.getProperty(prot + ".proxyPassword", "");
if (getRequestingHost().equalsIgnoreCase(host)) {
if (Integer.parseInt(port) == getRequestingPort()) {
// Seems to be OK.
return new PasswordAuthentication(user, password.toCharArray());
}
}
}
return null;
}
});
我还没有尝试过,但它看起来不错。
我稍微修改了原始版本以使用equalsIgnoreCase()而不是equals(host.toLowerCase())因为:http://mattryall.net/blog/2009/02/the-infamous-turkish-locale-bug并且我添加了“80”作为端口的默认值以避免Integer中的NumberFormatException .parseInt(端口)。
答案 3 :(得分:12)
大部分答案都在现有的回复中,但对我来说并不完全。这对我来说对java.net.HttpURLConnection有用(我用JDK 7和JDK 8测试了所有的情况)。请注意,您不必使用Authenticator类。
案例1:没有用户身份验证的代理,访问HTTP资源
-Dhttp.proxyHost=myproxy -Dhttp.proxyPort=myport
案例2:使用用户身份验证的代理,访问HTTP资源
-Dhttp.proxyHost=myproxy -Dhttp.proxyPort=myport -Dhttps.proxyUser=myuser -Dhttps.proxyPassword=mypass
案例3:没有用户身份验证的代理,访问HTTPS资源(SSL)
-Dhttps.proxyHost=myproxy -Dhttps.proxyPort=myport
案例4:使用用户身份验证的代理,访问HTTPS资源(SSL)
-Dhttps.proxyHost=myproxy -Dhttps.proxyPort=myport -Dhttps.proxyUser=myuser -Dhttps.proxyPassword=mypass
案例5:没有用户身份验证的代理,访问HTTP和HTTPS资源(SSL)
-Dhttp.proxyHost=myproxy -Dhttp.proxyPort=myport -Dhttps.proxyHost=myproxy -Dhttps.proxyPort=myport
案例6:使用用户身份验证的代理,访问HTTP和HTTPS资源(SSL)
-Dhttp.proxyHost=myproxy -Dhttp.proxyPort=myport -Dhttp.proxyUser=myuser -Dhttp.proxyPassword=mypass -Dhttps.proxyHost=myproxy -Dhttps.proxyPort=myport -Dhttps.proxyUser=myuser -Dhttps.proxyPassword=mypass
您也可以使用System.setProperty(&#34; key&#34;,&#34; value)设置属性。
要访问HTTPS资源,您可能必须通过下载服务器证书并将其保存在信任存储区中然后使用该信任存储来信任该资源。即
System.setProperty("javax.net.ssl.trustStore", "c:/temp/cert-factory/my-cacerts");
System.setProperty("javax.net.ssl.trustStorePassword", "changeit");
答案 4 :(得分:10)
但是,只设置那些参数,身份验证不起作用。
必须在该代码中添加以下内容:
final String authUser = "myuser";
final String authPassword = "secret";
System.setProperty("http.proxyHost", "hostAddress");
System.setProperty("http.proxyPort", "portNumber");
System.setProperty("http.proxyUser", authUser);
System.setProperty("http.proxyPassword", authPassword);
Authenticator.setDefault(
new Authenticator() {
public PasswordAuthentication getPasswordAuthentication() {
return new PasswordAuthentication(authUser, authPassword.toCharArray());
}
}
);
答案 5 :(得分:8)
对于Java 1.8及更高版本,您必须设置
-Djdk.http.auth.tunneling.disabledSchemes =
使用基本授权代理使用https以及验证者,如接受的答案中所述
答案 6 :(得分:4)
试试我写的这个跑步者。它可能会有所帮助。
import java.io.InputStream;
import java.lang.reflect.Method;
import java.net.Authenticator;
import java.net.PasswordAuthentication;
import java.net.URL;
import java.net.URLConnection;
import java.util.Scanner;
public class ProxyAuthHelper {
public static void main(String[] args) throws Exception {
String tmp = System.getProperty("http.proxyUser", System.getProperty("https.proxyUser"));
if (tmp == null) {
System.out.println("Proxy username: ");
tmp = new Scanner(System.in).nextLine();
}
final String userName = tmp;
tmp = System.getProperty("http.proxyPassword", System.getProperty("https.proxyPassword"));
if (tmp == null) {
System.out.println("Proxy password: ");
tmp = new Scanner(System.in).nextLine();
}
final char[] password = tmp.toCharArray();
Authenticator.setDefault(new Authenticator() {
@Override
protected PasswordAuthentication getPasswordAuthentication() {
System.out.println("\n--------------\nProxy auth: " + userName);
return new PasswordAuthentication (userName, password);
}
});
Class<?> clazz = Class.forName(args[0]);
Method method = clazz.getMethod("main", String[].class);
String[] newArgs = new String[args.length - 1];
System.arraycopy(args, 1, newArgs, 0, newArgs.length);
method.invoke(null, new Object[]{newArgs});
}
}