gpt4 book ai didi

java.net.ConnectException : Connection refused: connect for HTTPS connections 异常

转载 作者:塔克拉玛干 更新时间:2023-11-02 19:58:56 28 4
gpt4 key购买 nike

我在 Eclipse 中创建了作为独立程序执行的此类,它可以毫无问题地连接所有 http URL(例如:http://stackoverflow.com),但是当我尝试连接到 https(例如 https://en.wikipedia.org/wiki/HTTPS)时) 是不可能的

public class TEST4 {

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

System.setProperty("http.proxyHost", "147.67.217.33");
System.setProperty("http.proxyPort", "8022");
System.setProperty("https.proxyHost", "147.67.217.33");
System.setProperty("https.proxyPort", "8022");

Authenticator.setDefault(new Authenticator() {
@Override
protected PasswordAuthentication getPasswordAuthentication() {
return new PasswordAuthentication("pecador", "9ddjk69t".toCharArray());
}
});

URL url=new URL("https://en.wikipedia.org/wiki/HTTPS");

URLConnection uc = url.openConnection ();
String encoded = new String (base64Encode(new String("pecador:9ddjk69t")));
uc.setRequestProperty("Proxy-Authorization", "Basic " + encoded);
uc.connect();

BufferedReader in = new BufferedReader(new InputStreamReader(uc.getInputStream()));
String inputLine;
while ((inputLine = in.readLine()) != null)
System.out.println(inputLine);
in.close();

}

public static String userNamePasswordBase64(String username, String password) {
return "Basic " + base64Encode(username + ":" + password);
}

private final static char base64Array[] = { 'A', 'B', 'C', 'D', 'E', 'F',
'G', 'H', 'I', 'J', 'K', 'L', 'M', 'N', 'O', 'P', 'Q', 'R', 'S',
'T', 'U', 'V', 'W', 'X', 'Y', 'Z', 'a', 'b', 'c', 'd', 'e', 'f',
'g', 'h', 'i', 'j', 'k', 'l', 'm', 'n', 'o', 'p', 'q', 'r', 's',
't', 'u', 'v', 'w', 'x', 'y', 'z', '0', '1', '2', '3', '4', '5',
'6', '7', '8', '9', '+', '/' };

private static String base64Encode(String string) {
String encodedString = "";
byte bytes[] = string.getBytes();
int i = 0;
int pad = 0;
while (i < bytes.length) {
byte b1 = bytes[i++];
byte b2;
byte b3;
if (i >= bytes.length) {
b2 = 0;
b3 = 0;
pad = 2;
} else {
b2 = bytes[i++];
if (i >= bytes.length) {
b3 = 0;
pad = 1;
} else
b3 = bytes[i++];
}
byte c1 = (byte) (b1 >> 2);
byte c2 = (byte) (((b1 & 0x3) << 4) | (b2 >> 4));
byte c3 = (byte) (((b2 & 0xf) << 2) | (b3 >> 6));
byte c4 = (byte) (b3 & 0x3f);
encodedString += base64Array[c1];
encodedString += base64Array[c2];
switch (pad) {
case 0:
encodedString += base64Array[c3];
encodedString += base64Array[c4];
break;
case 1:
encodedString += base64Array[c3];
encodedString += "=";
break;
case 2:
encodedString += "==";
break;
}
}
return encodedString;
}

}

最佳答案

您需要设置https代理。在您的示例中,仅设置了 http 代理。也可以使用身份 validator 设置用户名和密码。希望能自动选择合适的方法。

import java.io.BufferedReader;
import java.io.IOException;
import java.io.InputStreamReader;
import java.net.Authenticator;
import java.net.PasswordAuthentication;
import java.net.URL;
import java.net.URLConnection;

public class Play {
public static void main(String[] args) throws IOException {
// Method 1 for Proxy
System.setProperty("http.proxyHost", "147.67.217.33");
System.setProperty("http.proxyPort", "8022");
System.setProperty("https.proxyHost", "147.67.217.33");
System.setProperty("https.proxyPort", "8022");

URL url=new URL("https://en.wikipedia.org/wiki/HTTPS");
URLConnection uc = url.openConnection();
Authenticator.setDefault(new Authenticator() {
@Override
protected PasswordAuthentication getPasswordAuthentication() {
return new PasswordAuthentication("pecador", "9ddjk69t".toCharArray());
}
});

uc.connect();

BufferedReader in = new BufferedReader(new InputStreamReader(uc.getInputStream()));
String inputLine;
while ((inputLine = in.readLine()) != null)
System.out.println(inputLine);
in.close();
}
}

[更新]

由于这仍然没有解决问题,我认为发生的事情是代理希望以纯文本方式进行协商,即使是请求用于代理 https 站点的用户名和密码。在某一时刻,客户端会期望数据通过 SSL 加密,而代理请求 BASIC 身份验证仍然是纯文本。我找到了一篇试图解决这个问题的旧文章:https tunneling .

另见 this blog entry因为它似乎是一个有趣的话题,指的是同一篇文章。

那里有很多 Material 可供阅读学习,现在有点太多了,我无法掌握和重复。所以请原谅我直接让你引用那两个读物。像往常一样,我希望阅读您的经验,并希望您能成功。

[我永远的愿望]

代理和身份验证是企业环境的结构,我只是不明白为什么我们没有通过简单易用的 API 来正确处理它。

关于java.net.ConnectException : Connection refused: connect for HTTPS connections 异常,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/31007588/

28 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com