我正在连接一个网站及其api来检索数据。我下面的代码执行此操作并获取响应正文,但如何解析该响应正文? 我是否必须创建自己的函数,必须搜索我想要的术语,然后获得每个术语的子内容?或者我已经有一个可以使用的库可以帮我吗?
private class GetResultTask extends AsyncTask<String, Void, String> {
@Override
protected String doInBackground(String... urls) {
String response = "";
DefaultHttpClient client = new DefaultHttpClient();
HttpGet httpGet = new HttpGet("https://api.bob.com/2.0/shelves/45?client_id=no&whitespace=1");
try {
HttpResponse execute = client.execute(httpGet);
InputStream content = execute.getEntity().getContent();
BufferedReader buffer = new BufferedReader(new InputStreamReader(content));
String s = "";
while ((s = buffer.readLine()) != null) {
response += s;
}
} catch (Exception e) {
e.printStackTrace();
}
return response;
}
@Override
protected void onPostExecute(String result) {
apiStatus.setText(result); //setting the result in an EditText
}
}
回应机构
{
"id": 415,
"url": "http://bob.com/45/us-state-capitals-flash-cards/",
"title": "U.S. State Capitals",
"created_by": "bub12",
"term_count": 50,
"created_date": 1144296408,
"modified_date": 1363506943,
"has_images": false,
"subjects": [
"unitedstates",
"states",
"geography",
"capitals"
],
"visibility": "public",
"has_access": true,
"description": "List of the U.S. states and their capitals",
"has_discussion": true,
"lang_terms": "en",
"lang_definitions": "en",
"creator": {
"username": "bub12",
"account_type": "plus",
"profile_image": "https://jdfkls.dfsldj.jpg"
},
"terms": [
{
"id": 15407,
"term": "Montgomery",
"definition": "Alabama",
"image": null
},
{
"id": 15455,
"term": "Juneau",
"definition": "Alaska",
"image": null
},
{
"id": 413281851,
"term": "Tallahassee",
"definition": "Florida",
"image": null
},
{
"id": 413281852,
"term": "Atlanta",
"definition": "Georgia",
"image": null
}
]
}
答案 0 :(得分:3)
/那是JSON,您可以使用像Jackson r Gson这样的库对其进行反序列化。
http://jackson.codehaus.org/ http://code.google.com/p/google-gson/
您可以将Java对象映射到Json,或者像通用对象一样对其进行反序列化。
答案 1 :(得分:2)
该数据格式是JSON(JavaScript Object Notation)。所以你需要的是一个与android兼容的JSON解析器,比如GSON,你很高兴。
答案 2 :(得分:2)
Spring的RestTemplate
非常简单,它会自动将响应体解组(即解析)到与响应的JSON格式匹配的Java对象中:
首先,根据需要使用JAXB注释定义Java类以匹配数据格式。这是一个基于您的响应主体的简化模型:
@XmlRootElement
class MyResponseData {
long id;
String url;
String title;
String created_by;
int term_count;
int created_date;
int modified_date;
boolean has_images;
List<String> subjects;
Creator creator;
List<Term> terms;
}
class Creator {
String username;
String account_type;
String profile_image;
}
class Term {
long id;
String term;
String definition;
String image;
}
然后你只用Spring的RestTemplate
String url = "https://api.bob.com/2.0/shelves/45?client_id=no&whitespace=1";
RestTemplate template = new RestTemplate();
MyResponseData body = template.getForObject(url, MyResponseData.class);
3行代码发出请求并将响应主体作为Java对象。它没有那么简单。
答案 3 :(得分:0)
在包中添加以下JSONParser.java类,并使用like,
<强> YourClass.java 强>
JSONObject json = jParser.getJSONFromUrl(YOUR_URL_TO_JSON);
try {
// Getting Array of terms
JSONArray terms = json.getJSONArray("terms");
// looping through All Contacts
for(int i = 0; i < terms.length; i++){
JSONObject termsJsonObject= terms.getJSONObject(i);
String id = termsJsonObject.getJSONObject("id").toString();
String term = termsJsonObject.getJSONObject("term").toString();
String definition = termsJsonObject.getJSONObject("definition").toString();
String image = termsJsonObject.getJSONObject("image").toString();
// do your operations using these values
}
}
catch (JSONException e) {
e.printStackTrace();
return "";
}
<强> JSONParser.java 强>
public class JSONParser {
static InputStream is = null;
static JSONObject jObj = null;
static String json = "";
// constructor
public JSONParser() {
}
public JSONObject getJSONFromUrl(String url) {
// Making HTTP request
try {
// defaultHttpClient
DefaultHttpClient httpClient = new DefaultHttpClient();
HttpPost httpPost = new HttpPost(url);
HttpResponse httpResponse = httpClient.execute(httpPost);
HttpEntity httpEntity = httpResponse.getEntity();
is = httpEntity.getContent();
} catch (UnsupportedEncodingException e) {
e.printStackTrace();
} catch (ClientProtocolException e) {
e.printStackTrace();
} catch (IOException e) {
e.printStackTrace();
}
try {
BufferedReader reader = new BufferedReader(new InputStreamReader(
is, "iso-8859-1"), 8);
StringBuilder sb = new StringBuilder();
String line = null;
while ((line = reader.readLine()) != null) {
sb.append(line + "\n");
}
is.close();
json = sb.toString();
} catch (Exception e) {
Log.e("Buffer Error", "Error converting result " + e.toString());
}
// try 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 JSON String
return jObj;
}
}