如何使用httpClient和JSON从php接收数组到android?

时间:2015-06-08 17:11:58

标签: php android mysql json apache-httpclient-4.x

我在php中有以下代码:

<?php 
try {
$gbd = new PDO('mysql:host=localhost;dbname=tramites', $username,$password);

$categoria = $_POST['categoria'];

$stmt = $gbd->prepare("SELECT nombre, categoria FROM tramite WHERE categoria = :categ");
$result = $stmt->execute(array("categ"=>$categoria));
    $i=0;
$arreglo = array(); // arreglo para enviar
$result2 = $stmt->fetchAll();
foreach ($result2 as $row)
{
    $arreglo[$i] = $row['nombre'].', '.$row['categoria'];
    $i++;
}

$gbd = null;
}
catch (PDOException $e)
{
    print "¡Error!: " . $e->getMessage() . "<br/>";
    die();
}

if($i >= 0)
{
    echo json_encode($arreglo);
}
?>

这个代码我从一个Android应用程序调用,我需要在android中接收arreglo数组,但它返回null我不知道  知道原因。

我的主要代码:

@Override
public boolean onOptionsItemSelected(MenuItem item)
{
    int id = item.getItemId();
    if (id == R.id.action_settings2) // JSON
    {
        String n="";
        HttpHandler handler= new HttpHandler();
        String txt=handler.getTramites2("tramites");
        n = parseProfilesJson(txt);
        Toast.makeText(this, "ca / "+ n+" /  "+ txt, Toast.LENGTH_LONG).show();
    }
    return super.onOptionsItemSelected(item);
}


public String parseProfilesJson(String the_json)
{
    String res="";
    try {
        JSONObject myjson = new JSONObject(the_json);

        JSONArray nameArray = myjson.names();
        JSONArray valArray = myjson.toJSONArray(nameArray);
        for(int i=0;i<valArray.length();i++)
        {
            String p = nameArray.getString(i) + "," + valArray.getString(i);
            res = res + p;
            //Toast.makeText(this, "ca "+ n, Toast.LENGTH_LONG).show();
        }
    } catch (JSONException e)
        { e.printStackTrace(); }
    return res;
}

和HttpHandler的类:

public class HttpHandler
{
protected String url = "http://192.168.43.98/tramitapue/";
static String json = "";
public String getTramites2(String categoria)
{
    try{
        HttpClient httpclient = new DefaultHttpClient();
        HttpPost httppost = new HttpPost(url+"getTramites2.php");
        //Parámetros
        List<NameValuePair> params = new ArrayList<NameValuePair>();

        params.add(new BasicNameValuePair("categoria", categoria));

        // envio los parametros
        httppost.setEntity(new UrlEncodedFormEntity(params));

        HttpResponse resp = httpclient.execute(httppost);

        // recibo paramteros
        //HttpEntity ent = resp.getEntity();

        ////////////////////////////////////
        // here i put json content
        // trace response
        InputStream is = resp.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");
        }
        json = sb.toString();
        ////////////////////////////////////

        //String text = EntityUtils.toString(ent);

        return json;
    }catch(Exception e){ return "Error en la Conexión " + e;}

}

我没有得到任何错误,但我得到一个空值。如果我只在一个字符串中使用php,它可以工作,但我需要一个数组。怎么了。我提前道歉,因为我的变量是西班牙语和英语的混合物。

2 个答案:

答案 0 :(得分:0)

您可以使用JSON对查询中的结果进行编码,并在您的应用中解析它们。

也许这会对你有所帮助: JSON Parser

答案 1 :(得分:0)

你需要使用Android - Json - PHP和PHP - Json - android。

Here a example