如何让android json_encode($ array)进入android来操纵它的数据?

时间:2012-04-24 00:26:36

标签: php android json

如何让php json_encode($array)进入android操作数据?

我有一个用json_encode编码数组的PHP($ array);当我

echo json_encode($array);

我得到:

[{"id":"1","name":"player1","score":"20","quarter":"Q - 1"},{"id":"2","name":"player2","score":"18","quarter":"http:\/\/localhost\/win.jpg"}]

现在在android中我希望从php中获取该数组,并将其放入一个数组中,让我从索引0中获取键名称包含的字符串值,然后将该字符串设置为textView文本。在iphone中我只做这个代码:

NSDictionary *json = [NSJSONSerialization JSONObjectWithData:data options:kNilOptions error:&error];

(数据是我的本地网址“http://localhost/my.php”)

然后我可以轻松地使用valueForKey:nameobjectAtIndex:0从字典中获取数据并将其放入文本字​​段。

请在java中完成代码实现,以便我能理解。因为我是java的新手,我会因为大量的错误而失去理智,并且会以不同的方式尝试这样做。

感谢解决我问题的那个。

3 个答案:

答案 0 :(得分:1)

使用org.apache.http.client.HttpClient接收对字符串的响应。

HttpClient httpclient = new DefaultHttpClient();
try {
    HttpPost httppost = new HttpPost(this.getURL());
    // attach the request with post data
    List<NameValuePair> pairs = new ArrayList<NameValuePair>(); 
    pairs.add(new BasicNameValuePair("username", username)); 
    pairs.add(new BasicNameValuePair("password", password));        
    httppost.setEntity(new UrlEncodedFormEntity(pairs));
    //send request to server
    HttpResponse response = httpclient.execute(httppost);
    //trace response
    InputStream is = response.getEntity().getContent();
    //convert response to string
    BufferedReader myReader = new BufferedReader(new InputStreamReader(is,"iso-8859-1"));
    StringBuilder sb = new StringBuilder();
    sb.append(myReader.readLine() + "\n");
    String line="";
    while ((line = myReader.readLine()) != null) {
        sb.append(line + "\n");
    }
    result = sb.toString();
} catch (Exception e) {
    e.printStackTrace();
}

然后你可以使用org.json.JSONObject或org.json.JSONArray。

JSONObject json_data= new JSONObject(result);
int userId = Integer.parseInt(json_data.getString("user_id"));
JSONArray arrJson = json_data.getJSONArray("data");

答案 1 :(得分:0)

有许多第三方课程可以自动完成大部分工作。我们不需要发明轮子。轻松使用Retrofit或Volley。我的项目很好地工作。他们代表您处理许多事情。 定义一个类来封装sigle对象中每个播放器对象的所有属性,然后使用改进API: 也许以下提示会帮助你:

public interface QuestionAPI {
    @GET("player.php")//you can call php file directly
    public void getFeed(Callback <List<PlayerObject>> playerobject);
}

答案 2 :(得分:0)

发生此错误是因为您发送的json数组没有其名称。

存储json数组后执行以下操作:

echo json_encode(array('acdata'=>$acdata));



eg:
while($row = $stmt->fetch ()){
 $acdata[] = array(
     'acid' => $acid,
     'address' => $address,
     'companyname' => $companyname,
     'dateofpurchase' => $dateofpurchase,
     'ac_type' => $ac_type
);
}
header('Content-type: application/json');
echo json_encode(array('acdata'=>$acdata));

然后在android中通过以下方式检索它:

JSONObject jsonRootObject = new JSONObject(result);
JSONArray jsonArray = jsonRootObject.optJSONArray("acdata");
JSONObject jsonObject = jsonArray.getJSONObject(1);
name = jsonObject.optString("acid");

// acid是json中键的名称

//将其置于循环中以获取所有值