1

我正在尝试从带有 android 应用程序的网站获取数据。

这是我的代码:

URL url = new URL("http://www.google.com/ig/api?weather=Schriesheim,Germany");
URLConnection uCon = url.openConnection();
iStream = uCon.getInputStream();

getInputStream() 方法返回一个 IOException,我已经尝试了很多在 Internet 上找到的东西,但没有任何效果。顺便说一句,我在 Java 应用程序中尝试了这段代码并且它有效,所以我认为问题出在我的 Android 设置中。

我已经在 Manifest.xml 中添加了这些行:

<uses-permission android:name="android.permission.ACCESS_NETWORK_STATE" />
<uses-permission android:name="android.permission.INTERNET" />

我正在使用 Eclipse 并运行 Archlinux x64。任何想法 ?

谢谢你。

4

2 回答 2

2

您可以尝试使用此功能从互联网获取数据

        public static String get(String from) {
            try {
                HttpClient client = new DefaultHttpClient();  
                HttpGet get = new HttpGet(from);
                HttpResponse responseGet = client.execute(get);  
                HttpEntity resEntityGet = responseGet.getEntity();  
                if (resEntityGet != null) return EntityUtils.toString(resEntityGet);
                } catch (Exception e) {
                    Log.e("GET", e.toString());
                }
            return null;
        }
于 2012-04-07T20:13:33.953 回答
0

尝试

uCon.setDoInput(true);

uCon.getInputStream();
于 2012-05-10T00:04:43.720 回答