Estoy intentando enviar datos de la aplicación de Android al servidor web. Mi aplicación de Android funciona correctamente. Sin embargo, el código php tiene problemas.Enviar datos de Android a servidor con datos JSON
<?php
$json = $_SERVER['HTTP_JSON'];
echo "JSON: \n";
var_dump($json);
echo "\n\n";
$data = json_decode($json,true);
echo "Array: \n";
var_dump($data);
echo "\n\n";
$name = $data['name'];
$pos = $data['position'];
echo "Result: \n";
echo "Name : ".$name."\n Position : ".$pos;
?>
Errores:
Notice: Undefined index: HTTP_JSON in C:\wamp\www\jsonTest.php on line 2
(line 2 : $json = $_SERVER['HTTP_JSON'];)
no pude encontrar estos problemas razón. Me puedes ayudar ? (nota: estoy usando servidor Wamp)
Aquí está la fuente de Android relevante:
// Create a new HttpClient and Post Header
HttpClient httpclient = new DefaultHttpClient();
HttpPost httppost = new HttpPost("10.0.2.2:90/jsonTest.php";);
JSONObject json = new JSONObject();
try {
json.put("name", "flower");
json.put("position", "student");
JSONArray postjson=new JSONArray();
postjson.put(json);
httppost.setHeader("json",json.toString());
httppost.getParams().setParameter("jsonpost",postjson);
System.out.print(json);
HttpResponse response = httpclient.execute(httppost);
if(response != null)
{
InputStream is = response.getEntity().getContent();
BufferedReader reader = new BufferedReader(new InputStreamReader(is));
StringBuilder sb = new StringBuilder();
String line = null;
try {
while ((line = reader.readLine()) != null) {
sb.append(line + "\n");
}
} catch (IOException e) {
e.printStackTrace();
} finally {
try {
is.close();
} catch (IOException e) {
e.printStackTrace();
}
}
text = sb.toString();
}
tv.setText(text);
}catch (ClientProtocolException e) {
// TODO Auto-generated catch block
} catch (IOException e) {
// TODO Auto-generated catch block
}
Este código funciona con éxito en el lado androide (sin error). Pero el lado php tiene problemas .. Gracias.
Gracias por la respuesta. Usé $ _POST en lugar de $ _SERVER pero el mismo error: Aviso: Índice indefinido: HTTP_JSON en C: \ wamp \ www \ jsonTest.php en la línea 3. – iremce
Su script PHP no está recogiendo los datos JSON ... Publicar las secciones relevantes del código de Android donde está enviando el JSON al servidor. – nickb
Una parte del código: // Crear un nuevo HttpClient y encabezado de envío HttpClient httpclient = new DefaultHttpClient(); HttpPost httppost = new HttpPost ("http: // localhost: 90/jsonTest.php"); JSONObject json = new JSONObject(); try { json.put ("nombre", "Irem"); json.put ("posición", "estudiante"); JSONArray postjson = new JSONArray(); postjson.put (json); httppost.setHeader ("json", json.toString()); httppost.getParams(). SetParameter ("jsonpost", postjson); System.out.print (json); HttpResponse response = httpclient.execute (httppost); – iremce