0
 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 SUCCESSFUL(总时间:1 秒)

为什么会抛出错误?如何解决?

4

1 回答 1

2

您需要在您的本地主机上运行并监听端口 80 的服务器,否则您会收到连接被拒绝错误。

于 2012-12-29T11:50:55.110 回答