こんにちは、私は webservices と json を初めて使用するので、JSONStringer の結果を textView に表示する方法を教えてください。
これは私が取り組んでいるコードです:
// 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....
. よろしくお願いします。前もって感謝します。