try {
URL u = new URL("http://[::1]/index.php");
InputStream in = u.openStream();
int b;
while ((b = in.read()) != -1) {
System.out.write(b);
}
}
catch (MalformedURLException e) {System.out.println(e);}
catch (IOException e) {System.out.println(e);}
返回
运行:java.net.ConnectException:拒绝连接:连接BUILD 成功(总时间:1秒)
为什么会抛出错误?如何解决?
答案 0 :(得分:2)
您需要在localhost上运行服务器并侦听端口80,否则会出现连接被拒绝错误..