找不到源classloader.class

时间:2013-03-14 17:52:51

标签: android eclipse

我写了以下代码,用于从互联网资源中读取信息:

public String ReadUrl(){
    BufferedReader br = null;
    String result = null;

    try {
        URL url = new URL(this.url);
        br = new BufferedReader(new InputStreamReader(url.openStream()));
        String line = null;
        while ((line = br.readLine()) != null)
            result += line;
    } catch (IOException e) {
    }

    return result;
}

this.url看起来像是:"http://example.com/json.php"。当我想在虚拟机上打开这个应用程序时,我在Eclipse中遇到了这个错误:

  

源附件不包含文件classloader.class的源

问题出在哪里? (我更新了Eclipse和Android SDK)。

0 个答案:

没有答案