2009-12-08 105 views
0

我试图从查询的字符串中获取谷歌搜索的匹配。Java:错误地使用GSon? (空指针异常)

public class Utils { 

    public static int googleHits(String query) throws IOException { 
     String googleAjax = "http://ajax.googleapis.com/ajax/services/search/web?v=1.0&q="; 
     String json = stringOfUrl(googleAjax + query); 
     JsonObject hits = new Gson().fromJson(json, JsonObject.class); 

     return hits.get("estimatedResultCount").getAsInt(); 
    } 

    public static String stringOfUrl(String addr) throws IOException { 
     ByteArrayOutputStream output = new ByteArrayOutputStream(); 
     URL url = new URL(addr); 
     IOUtils.copy(url.openStream(), output); 
     return output.toString(); 
    } 

    public static void main(String[] args) throws URISyntaxException, IOException { 
     System.out.println(googleHits("odp")); 
    } 

} 

下抛出异常:

Exception in thread "main" java.lang.NullPointerException 
    at odp.compling.Utils.googleHits(Utils.java:48) 
    at odp.compling.Utils.main(Utils.java:59) 

我在做什么错误?我应该为Json返回定义一个完整的对象吗?这看起来过分了,因为我想要做的就是获得一个价值。

仅供参考:returned JSON structure

回答

1

查看返回的JSON,看起来您正在请求错误对象的estimatedResultsCount成员。您正在询问hits.estimatedResultsCount,但您需要hits.responseData.cursor.estimatedResultsCount。我不是超级熟悉GSON,但我认为你应该这样做:

return hits.get("responseData").get("cursor").get("estimatedResultsCount"); 
0

我想这和它的工作,使用JSON而不是GSON。

public static int googleHits(String query) throws IOException, 
     JSONException { 
    String googleAjax = "http://ajax.googleapis.com/ajax/services/search/web?v=1.0&q="; 
    URL searchURL = new URL(googleAjax + query); 
    URLConnection yc = searchURL.openConnection(); 
    BufferedReader in = new BufferedReader(new InputStreamReader(
      yc.getInputStream())); 
    String jin = in.readLine(); 
    System.out.println(jin); 

    JSONObject jso = new JSONObject(jin); 
    JSONObject responseData = (JSONObject) jso.get("responseData"); 
    JSONObject cursor = (JSONObject) responseData.get("cursor"); 
    int count = cursor.getInt("estimatedResultCount"); 
    return count; 
}