0

我正在尝试使用 httppost 将数据从 Android 手机发送到 php 服务器。连接没问题。在 php 方面,我使用 echo 来指定响应。例子:

<?php
if(isset($_REQUEST['data'])){
echo "This is the response.";
}
?>

这里棘手的事情是,如果我想将多个数据添加到同一个请求中,这将检索多个结果而不仅仅是一个响应。这是我的java代码:

Httpclient hc = new DefaultHttpClient();
Httppost hp = new HttpPost("link");
list.add(new BasicNameValuePair("Name", "Mansour"));
list.add(new BasicNameValuePair("Age", "12"));
    try{
        hp.setEntity(new UrlEncodedFormEntity(list));
        hr = hc.execute(hp);
        BufferedReader br = new BufferedReader(new InputStreamReader(hr.getEntity().getContent()));
        StringBuffer sb = null;
        String compare;
        while((compare = br.readLine()) != null){
            sb.append(compare);
        }
        // Toast the response
        Toast.makeText(this, sb.toString(), Toast.LENGTH_LONG).show();
    }catch(Exception e){
        e.printStackTrace();
    }       
4

1 回答 1

0

您应该使用您想要发送的多个数据创建对象类并将其序列化为 json。Gson 将是完美的选择。https://sites.google.com/site/gson/gson-user-guide

希望它有用;)

于 2013-08-19T12:46:36.480 回答