gpt4 book ai didi

java - 在JAVA中使用Socks5代理打开网页

转载 作者:太空宇宙 更新时间:2023-11-04 12:37:35 27 4
gpt4 key购买 nike

我正在尝试通过 Socks5 使用代理打开页面 URL(已在服务器端创建)

Proxy proxy = new Proxy(Proxy.Type.HTTP, new InetSocketAddress("10.0.0.1", 8080));
conn = new URL(urlString).openConnection(proxy);

//Connection
Authenticator authenticator = new Authenticator() {

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

现在我需要使用此代理连接打开(和关闭选项?)一个 URL...

最佳答案

Now I need to open (and closing option?) an URL using this Proxy connection...

您已经这样做了。只需获取输入流并照常进行即可。

关于java - 在JAVA中使用Socks5代理打开网页,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/37155667/

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