当用户在 android 的 edittextbox 中输入“silent”时,另一个文本框将显示这两个密码“umbrella”和“umbrella12”。我正在尝试通过这种类型的 Json
{
getValueResult: [
{
password: "umberlla"
uname: "silent"
},
{
password: "umberlla12"
uname: "silent"
}]
}
解析json的代码如下。但是在while循环中追加后,我无法在StringBuilder中获取对象getValueResult,它显示为null。
这里我的android代码:
public void onGoClick(View v)
{
EditText edt=(EditText)findViewById(R.id.editText1);
HttpClient hc=new DefaultHttpClient();
HttpPost hp=new HttpPost("http://192.168.0.4:80/WcfClassDatabase/Service1.svc/getValue");
JSONObject jo=new JSONObject();
try {
jo.putOpt("name", edt);
StringEntity se=new StringEntity(jo.toString());
hp.setEntity(se);
hp.setHeader("Accept","application/json");
hp.setHeader("Content-type","application/json");
HttpResponse hr= hc.execute(hp);
Toast.makeText(this,"execute", Toast.LENGTH_LONG).show();
HttpEntity he=hr.getEntity();
InputStream is=he.getContent();
InputStreamReader ir=new InputStreamReader(is);
BufferedReader br=new BufferedReader(ir);
StringBuilder sbr=new StringBuilder();
String line="";
while((line=br.readLine()) != null)
{
sbr.append(line);
}
JSONObject job=new JSONObject(sbr.toString());
JSONArray ja=job.getJSONArray("getValueResult:");
// ArrayList<String> al = new ArrayList<String>();
String string= ja.getJSONObject(0).getString("password");
EditText edt2=(EditText)findViewById(R.id.editText2);
edt2.setText(string);
}
catch (Exception e) {
// TODO Auto-generated catch block
Toast.makeText(this, "oh!Failure", 10).show();
e.printStackTrace();
}
}
在调试中看到时,我总是得到作业对象为空。