我阅读了本文https://www.androidhive.info/2012/01/android-json-parsing-tutorial/和本文
@Override
protected void onPreExecute() {
super.onPreExecute();
// Showing progress dialog
pDialog = new ProgressDialog(MainActivity.this);
pDialog.setMessage("Please wait...");
pDialog.setCancelable(false);
pDialog.show();
}
@Override
protected Void doInBackground(Void... arg0) {
HttpHandler sh = new HttpHandler();
// Making a request to url and getting response
String jsonStr = sh.makeServiceCall(url);
Log.e(TAG, "Response from url: " + jsonStr);
if (jsonStr != null) {
try {
JSONObject jsonObj = new JSONObject(jsonStr);
// Getting JSON Array node
JSONArray contacts = jsonObj.getJSONArray("contacts");
// looping through All Contacts
for (int i = 0; i < contacts.length(); i++) {
JSONObject c = contacts.getJSONObject(i);
String id = c.getString("id");
String name = c.getString("name");
String email = c.getString("email");
String address = c.getString("address");
String gender = c.getString("gender");
// Phone node is JSON Object
JSONObject phone = c.getJSONObject("phone");
String mobile = phone.getString("mobile");
String home = phone.getString("home");
String office = phone.getString("office");
// tmp hash map for single contact
HashMap<String, String> contact = new HashMap<>();
// adding each child node to HashMap key => value
contact.put("id", id);
contact.put("name", name);
contact.put("email", email);
contact.put("mobile", mobile);
// adding contact to contact list
contactList.add(contact);
}
} catch (final JSONException e) {
Log.e(TAG, "Json parsing error: " + e.getMessage());
runOnUiThread(new Runnable() {
@Override
public void run() {
Toast.makeText(getApplicationContext(),
"Json parsing error: " + e.getMessage(),
Toast.LENGTH_LONG)
.show();
}
});
}
} else {
Log.e(TAG, "Couldn't get json from server.");
runOnUiThread(new Runnable() {
@Override
public void run() {
Toast.makeText(getApplicationContext(),
"Couldn't get json from server. Check LogCat for possible errors!",
Toast.LENGTH_LONG)
.show();
}
});
}
return null;
}
@Override
protected void onPostExecute(Void result) {
super.onPostExecute(result);
// Dismiss the progress dialog
if (pDialog.isShowing())
pDialog.dismiss();
/**
* Updating parsed JSON data into ListView
* */
ListAdapter adapter = new SimpleAdapter(
MainActivity.this, contactList,
R.layout.list_item, new String[]{"name", "email",
"mobile"}, new int[]{R.id.name,
R.id.email, R.id.mobile});
lv.setAdapter(adapter);
}
他/她在将其膨胀到列表视图之前已经检索了所有值。
我是JSon的新手。我尝试仅检索名称,但未运行。因此,是否有必要在使用任何值之前先检索所有值。
谢谢
答案 0 :(得分:2)
简单的答案是:这取决于。
当您定义 JSON数据中的内容时,请确保以“最小化”的方式进行设计:您只想包含具有值< / strong>给您(或您的用户)。含义:在这样的世界中,您仅传输要显示的数据。然后,很可能您的后端代码将要访问JSON字符串中的所有数据。因为您将所有这些JSON对象设计为仅包含相关信息。
但是很多时候,您的代码只是消耗一些东西。您不拥有/定义JSON结构,您只知道“那里应该有X,Y,Z字段,我的代码将使用这些字段”。然后,很明显,您仅提取X,Y,Z。并且仅将其他数据保留在该JSON中。触摸和处理与您的用例无关的信息毫无意义。
换句话说:在现实世界中,您不做任何事情是因为您可以。您这样做是因为,这样做可以为您的产品用户带来价值。