-1

我正在尝试编写一种方法来调用服务并在 Android 应用程序中获取 JSON 数据。假设所有必要的 gloable 变量都已声明...

这些是我正在使用的库:

import java.io.BufferedReader;
import java.io.IOException;
import java.io.InputStreamReader;
import java.net.MalformedURLException;
import java.net.URL;
import java.net.URLConnection;

import org.json.JSONArray;
import org.json.JSONException;
import org.json.JSONObject;

这是我的代码:

public class JSONParser {

String url = "http://gdata.youtube.com/feeds/api/users/eon/uploads?&v=2&max-   results=50&alt=jsonc"; 

JSONObject jObj = null;
JSONArray ja = null;
String json = "";

// constructor
public JSONParser() {

 }



  public JSONObject getJSONFromUrl(String url){
    try {
          URL urlGetter = new URL(url);
        URLConnection tc = urlGetter.openConnection();
        BufferedReader in = new BufferedReader(new InputStreamReader(
                tc.getInputStream(), "iso-8859-1"), 8);

          StringBuilder sb = new StringBuilder();
        String line = null;
        while ((line = in.readLine()) != null) {
            sb.append(line + "\n");
        }


         json = sb.toString();
    } catch (MalformedURLException e) {
        // TODO Auto-generated catch block
        e.printStackTrace();
    } catch (IOException e) {
        // TODO Auto-generated catch block
        e.printStackTrace();
    }

      //parse the string to a JSON object
    try {
        jObj = new JSONObject(json);
    } catch (JSONException e) {
        Log.e("JSON Parser", "Error parsing data " + e.toString());
    }
    return jObj;
   }

它只是不起作用,我尝试在调试模式下运行,当它运行到这一行时:

BufferedReader in = new BufferedReader(new InputStreamReader(
            tc.getInputStream(), "iso-8859-1"), 8);

它抱怨: java.net.UnknownHostException: gdata.youtube.com 我不知道如何解决这个问题......有什么建议吗?谢谢

顺便说一句,在我的 android 清单中,我已经允许上网:

如果您在浏览器中查找 url,您可以看到 ti 的 json 格式 ...并且可以连接...但是我的代码只是抱怨 unknowhostexception ...."http://gdata.youtube.com/ feeds/api/users/eon/uploads?&v=2&max-results=50&alt=jsonc";

4

2 回答 2

3

请将权限放入您的 androidManifest.xml

<uses-permission android:name="android.permission.INTERNET"/>
于 2012-09-06T13:32:19.047 回答
0

我想您需要使用urlEncoder对 url 进行编码 ..因为 url 包含需要用 %20 替换的空间 ..check https://stackoverflow.com/a/3286128/1434631

于 2012-09-06T13:17:15.783 回答