在Java和Python中实现代理IP的方法有所不同
在Java中,您可以使用java.net.Proxy
类来创建一个代理服务器。以下是一个简单的示例:
import java.net.*;
public class ProxyDemo {
public static void main(String[] args) {
// 创建一个IP地址和端口号的URI对象
URI proxyUri = new URI("http://proxy.example.com:8080");
// 创建一个代理对象
Proxy proxy = new Proxy(Proxy.Type.HTTP, proxyUri);
// 创建一个URL对象
URL url = new URL("http://example.com");
// 使用代理对象打开连接
try (URLConnection connection = url.openConnection(proxy)) {
// 设置请求属性(可选)
connection.setRequestProperty("User-Agent", "Mozilla/5.0");
// 读取响应内容
BufferedReader in = new BufferedReader(new InputStreamReader(connection.getInputStream()));
String inputLine;
StringBuilder content = new StringBuilder();
while ((inputLine = in.readLine()) != null) {
content.append(inputLine);
}
in.close();
// 输出响应内容
System.out.println(content.toString());
} catch (IOException | URISyntaxException e) {
e.printStackTrace();
}
}
}
在Python中,您可以使用requests
库来发送带有代理的HTTP请求。首先,您需要安装requests
库(如果尚未安装):
pip install requests
然后,您可以使用以下代码创建一个带有代理的HTTP请求:
import requests
url = "http://example.com"
proxy = "http://proxy.example.com:8080"
response = requests.get(url, proxies={"http": proxy, "https": proxy})
print(response.text)
请注意,这些示例仅用于演示如何在Java和Python中使用代理IP。在实际应用中,您可能需要根据您的需求对这些代码进行调整。