使用URL java连接到localhost时出错

时间:2012-12-29 11:48:08

标签: java sockets url networking io

 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秒)

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

1 个答案:

答案 0 :(得分:2)

您需要在localhost上运行服务器并侦听端口80,否则会出现连接被拒绝错误..