跳至主要内容

android java json

SEND JSON
    final JSONObject jsonObject=new JSONObject();
    try{
        jsonObject.put("Phone","17180109724");
        jsonObject.put("Name","steven");
    }catch (Exception e){
        e.printStackTrace();
    }
//...
os.println(jsonObject.toString());
RECEIVE JSON
JSONTokener jsonTokener=new JSONTokener(str);
JSONObject jsonObject1=(JSONObject)jsonTokener.nextValue();
String phone=jsonObject1.getString("Phone");
String name=jsonObject1.getString("Name");

遍历JsonObject

Iterator<String> ls = object.keys();while(ls.hasNext()){
    String a = ls.next();}

解析JsonArray
JSONTokener jsonTokener=new JSONTokener("[{\"Name\":\"steven\"},{\"Name\":\"kk\"}]");try {
    JSONArray jsonArray=(JSONArray)jsonTokener.nextValue();    
textView.setText(jsonArray.getJSONObject(1).getString("Name"));

JSONTokener jsonTokener=new JSONTokener("[{\"Name\":\"steven\"},{\"Name\":\"kk\"}]");try {
    JSONArray jsonArray=(JSONArray)jsonTokener.nextValue();    textView.setText(jsonArray.getJSONObject(1).getString("Name"));} catch (JSONException e) {
    Toast.makeText(this,e.toString(),Toast.LENGTH_LONG).show();}

评论

此博客中的热门博文

android hide actionbar

public class MainActivity extends Activity { ActionBar actionBar; //声明ActionBar @Override protected void onCreate( Bundle savedInstanceState) { super .onCreate(savedInstanceState); setContentView( R .layout.activity_main); actionBar = getSupportActionBar(); //得 到ActionBar actionBar.hide(); //隐藏ActionBar } }

go url encoding

func  QueryUnescape func QueryUnescape (s string ) ( string , error ) QueryUnescape does the inverse transformation of QueryEscape, converting %AB into the byte 0xAB and '+' into ' ' (space). It returns an error if any % is not followed by two hexadecimal digits. func  QueryUnescape func QueryUnescape (s string ) ( string , error ) QueryUnescape does the inverse transformation of QueryEscape, converting %AB into the byte 0xAB and '+' into ' ' (space). It returns an error if any % is not followed by two hexadecimal digits.