我想使用 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);