he hecho el analizador JSON en forma más sencilla, aquí está
package com.inzane.shoapp.activity;
import java.io.BufferedReader;
import java.io.IOException;
import java.io.InputStream;
import java.io.InputStreamReader;
import java.io.UnsupportedEncodingException;
import org.apache.http.HttpEntity;
import org.apache.http.HttpResponse;
import org.apache.http.client.ClientProtocolException;
import org.apache.http.client.methods.HttpPost;
import org.apache.http.impl.client.DefaultHttpClient;
import org.json.JSONException;
import org.json.JSONObject;
import android.util.Log;
public class JSONParser {
static InputStream is = null;
static JSONObject jObj = null;
static String json = "";
// constructor
public JSONParser() {
}
public JSONObject getJSONFromUrl(String url) {
// Making HTTP request
try {
// defaultHttpClient
DefaultHttpClient httpClient = new DefaultHttpClient();
HttpPost httpPost = new HttpPost(url);
HttpResponse httpResponse = httpClient.execute(httpPost);
HttpEntity httpEntity = httpResponse.getEntity();
is = httpEntity.getContent();
} catch (UnsupportedEncodingException e) {
e.printStackTrace();
} catch (ClientProtocolException e) {
e.printStackTrace();
} catch (IOException e) {
e.printStackTrace();
}
try {
BufferedReader reader = new BufferedReader(new InputStreamReader(
is, "iso-8859-1"), 8);
StringBuilder sb = new StringBuilder();
String line = null;
while ((line = reader.readLine()) != null) {
sb.append(line + "\n");
System.out.println(line);
}
is.close();
json = sb.toString();
} catch (Exception e) {
Log.e("Buffer Error", "Error converting result " + e.toString());
}
// try parse the string to a JSON object
try {
jObj = new JSONObject(json);
} catch (JSONException e) {
Log.e("JSON Parser", "Error parsing data " + e.toString());
System.out.println("error on parse data in jsonparser.java");
}
// return JSON String
return jObj;
}
}
esta clase devuelve el objeto JSON de la url
y cuando desea que el objeto JSON que acaba de llamar esta clase y el método en su clase de actividad
mi código está aquí
String url = "your url";
JSONParser jsonParser = new JSONParser();
JSONObject object = jsonParser.getJSONFromUrl(url);
String content=object.getString("json key");
aquí la "llave JSON" se denota que la clave en el archivo JSON
este es un ejemplo simple de archivos JSON
{
"json":"hi"
}
aquí "json" es clave y "hi" es el valor
Esto obtendrá su valor json para el contenido de la cadena.
El manejo de excepciones es requerido ya que Java te obliga a manejar cualquier excepción que se declare. ¿Qué pasa con el manejo de excepciones? – Falmarri
bueno, la "fuerza java" es el mayor problema –
Si Java no lo forzó a manejar excepciones, ¿cree que los programas seguirían ejecutándose y funcionarían bien? ¿Qué pasa si me pidieron que ingresara mi edad en un programa y le di mi opinión a snarfleblagger? ¿Debería Java permitir que el programa se ejecute sin problemas? Si no desea manejar las excepciones, entonces declare que fueron lanzadas por los métodos en los que pueden aparecer y observe cómo su programa falla cuando algo no está perfectamente bien. –