gpt4 book ai didi

java - 什么是 'proxy.mycompany1.local'

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

我刚开始从事 Java 网络协议(protocol)方面的工作。我正在尝试使用我的代理服务器连接到互联网。当我在“https://www.tutorialspoint.com/javaexamples/net_poxy.htm”看到帖子时',他们将 http.proxyHost 属性设置为 'proxy.mycompany1.local'。我知道我可以将它设置为我的代理服务器 IP,但我很想知道为什么我的程序仍然有效,即使我将它设置为一些随机字符串,如“abcd”。

一个。 “proxy.mycompany1.local”代表什么?

B.为什么我的程序可以运行,即使我将 http.proxyHost"设置为 "abcd"?

以下是我的工作程序:

import java.net.HttpURLConnection;
import java.net.InetSocketAddress;
import java.net.Proxy;
import java.net.ProxySelector;
import java.net.URI;
import java.net.URL;

public class TestProxy {
public static void main(String s[]) throws Exception {
try {

System.setProperty("http.proxyHost", "abcd");
System.setProperty("http.proxyPort", "8080");

URL u = new URL("http://www.google.com");
HttpURLConnection con = (HttpURLConnection) u.openConnection();
System.out.println(con.getResponseCode() + " : " + con.getResponseMessage());

} catch (Exception e) {
e.printStackTrace();
System.out.println(false);
}
Proxy proxy = (Proxy) ProxySelector.getDefault().select(new URI("http://www.google.com")).iterator().next();
System.out.println("proxy Type : " + proxy.type());
InetSocketAddress addr = (InetSocketAddress) proxy.address();
if (addr == null) {
System.out.println("No Proxy");
} else {
System.out.println("proxy hostname : " + addr.getHostName());
System.out.println("proxy port : " + addr.getPort());
}
}
}

这是输出:

200 : OK
proxy Type : HTTP
proxy hostname : abcd
proxy port : 8080

最佳答案

首先根据System Properties tutorial .

Warning: Changing system properties is potentially dangerous and should be done with discretion. Many system properties are not reread after start-up and are there for informational purposes. Changing some properties may have unexpected side-effects.

根据我的经验,当您更改 *.proxyHost 属性时,您的系统可能会出现令人不快的问题。因此,我强烈不建议您为此任务更改系统属性。

更好地使用类似的东西:

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

和代理授权:

Authenticator authenticator = new Authenticator() {
@Override
public PasswordAuthentication getPasswordAuthentication() {
return new PasswordAuthentication("user",
"mypassword".toCharArray());
}
};
Authenticator.setDefault(authenticator);

现在回到主要问题:

A. 'proxy.mycompany1.local"只是示例。您可以使用任何主机名

B. 类 URL 通过 Socket 使用 java.net.PlainSocketImpl 类。它尝试解析代理主机名 'abcd',吞下错误并直接转到 google。试试看这段代码:

import java.net.*;
import java.io.*;

public class RequestURI {

public static void main(String[] args) {
int port = 8181;
long startTime = System.currentTimeMillis();
try {
// System.getProperties().setProperty("http.proxyHost", "abcd");
// System.getProperties().setProperty("http.proxyPort", Integer.toString(port));

URL url = new URL("http://google.com");
HttpURLConnection uc = (HttpURLConnection) url.openConnection();
int resp = uc.getResponseCode();
if (resp != 200) {
throw new RuntimeException("Failed: Fragment is being passed as part of the RequestURI");
}
} catch (IOException e) {
e.printStackTrace();
}
System.out.println("Run time in ms ="+ (System.currentTimeMillis() - startTime));
}
}

当您使用 setProperty 取消注释部分时,您可以看到运行时间更长。尝试解析主机名失败会增加执行时间。

关于java - 什么是 'proxy.mycompany1.local',我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/39673149/

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