2015-10-04 94 views

回答

0

如果您正在使用的JSONObject類,你可以使用

try { 
    long l = object.getLong(key); // throws exception if there's no long at that key 
} 
catch(JSONException json) {} 

long l = object.optLong(key); // instead of throwing exception returns 0 

然後做

editText.setText("" + l);