0

我试图从 JSON 对象中分离 3 个字段的数据并将其设置为 TextView,但它显示数据为:

      {"Phone":"123"
      ,"Name":"temp"
      ,"Status":"true"}

我只想要 textView 中表 123、temp、true 的值,那么如何分隔这 3 个字段?

这是代码:

 JSONObject jsonObj = new JSONObject(params);
            user = new Users();
            user.setName(jsonObj.getString("Name"));
            user.setPhone(jsonObj.getString("Phone"));
            user.setStatus(jsonObj.getBoolean("Status"));
            tv.setText(jsonObj.toString());

User 是具有获取、设置名称、电话和状态的方法的类。

4

1 回答 1

0

完毕 !通过使用 java.lang.Stringbuilder,

于 2013-04-07T21:50:53.263 回答