从localhost读取文件

时间:2011-04-29 03:39:12

标签: android

我正在尝试从我的本地主机(WAMP)读取一个文本文件,但什么都没有回来。 有人可以指出我做错了吗。 这就是我试图实现它的方式。

        try {
        URL url = new URL("http://10.0.2.2/text.txt");
        BufferedReader in = new BufferedReader(new InputStreamReader(url.openStream()));           
        while ((str = in.readLine()) != null) {                
            tv.append(str);
        }
        in.close();
    } catch (MalformedURLException e) {
    } catch (IOException e) {      }

它使用真正的URL,但不是每当我使用localhost时。我也试过在URL中使用 localhost 127.0.0.1

0 个答案:

没有答案