您好我是webservices和json的新手,所以我请教您如何在textView中显示JSONStringer结果。
这是我正在处理的代码:
// Build JSON string
JSONStringer TestApp = new JSONStringer().object().key("id")
.value("1").key("name").value("manish").key("email")
.value("androidhub4you@gmail.com").key("country")
.value("india").endObject();
String entity = new StringEntity(TestApp.toString());
String var = entity.toString();
显示:
TextView tv = (TextView) findViewById (R.id.tvText);
tv.setText(var);
问题是它只是打印
org.apache.http.entity StringEntity....
。我非常感谢你的帮助。提前谢谢。
答案 0 :(得分:1)
更改
String var = entity.toString();
与
String var = EntityUtils.toString(entity)
StringEntity.toString()
返回对象的地址