0

我正在尝试从 http://www.google.com/dictionary/json?callback=dic&q=keyword&sl=en&tl=en&restrict=pr%2Cde&client=te中提取所有值

我想使用 GSON,但我不知道该怎么做。

有什么类似于 jericohtml 解析器的东西可以简单地提取所有值吗?

另外,我需要使用java。我可以检索 json,但它没有定期格式化(我的意思是逐行写入)

谢谢

URL u=new URL(url);
     HttpURLConnection conn = (HttpURLConnection) u.openConnection();
     conn.setRequestMethod("GET");
     conn.setRequestProperty("Accept", "application/atom+xml");
     conn.setRequestProperty("User-Agent", "Mozilla/5.0 (Windows NT 5.2; rv:21.0) Gecko/20100101 Firefox/21.0");

    BufferedReader br=new BufferedReader(new InputStreamReader(conn.getInputStream()));
    String temp=br.readLine();
    String strJson=temp.substring("dic(".length(),temp.length()-",200,null)".length());

    System.out.println(strJson);
4

1 回答 1

1

您可以使用 gson 提取您的 jsonobject 并设置您的用户定义对象 ,例如单击此处

Gson gson = new Gson();

    try {

        BufferedReader br = new BufferedReader(
            new FileReader("c:\\file.json"));

        //convert the json string back to object
        DataObject obj = gson.fromJson(br, DataObject.class);

        System.out.println(obj);

    } catch (IOException e) {
        e.printStackTrace();
    }
于 2013-06-27T11:50:16.257 回答