0

我正在尝试在 android 中使用 AsyncTask 连接到 mysql,但我遇到了并发症。我正在使用接口从 AsyncTask 返回数据,但是当我运行代码时出现以下错误:异常 RuntimeException。非常感谢大家。

4

2 回答 2

1

在您的 JSON 解析 try/catch 中添加一个通用 Exception 块并发布捕获的错误:

//parse json data
 try{
     JSONArray jarray = new JSONArray(result);
        for(int i=0 ; i<jarray.length() ; i++) {
        JSONObject ob = jarray.getJSONObject(i);
        String titulo = ob.getString("title");
        String cate = ob.getString("catid");
        int cat = Integer.parseInt(cate);
        String coord = ob.getString("extra_fields_search");

        String latitud = coord.substring(0, 9);
        Float lat_f = Float.parseFloat(latitud);
        int lat = lat_f *1000000;

        String longitud = coord.substring(10, 19);
        Float lon_f = Float.parseFloat(longitud);
        int lon = lon_f*1000000;

        GeoPoint point = new GeoPoint(lat, lon);
        negocioNuevo = new Negocio(titulo, cat, point);
        listaNegocios.add(negocioNuevo);
        }  
 }catch(JSONException e){
     Log.e("miError de JSON", "Error parsing JSON "+e.toString());
 }catch(Exception e){
     Log.e("miError de General", "Error parsing data "+e.toString());
 }
于 2012-12-12T16:04:44.553 回答
0

在连接类中尝试替换

public Conexion(OnTaskCompleted listener){
    this.listener=listener;
}

public void setOnResultsListener(OnTaskCompleted listener) {
        this.listener = listener;
    }

然后在 MainActivity 中替换:

Conexion conexion = new Conexion(this);
conexion.execute("tipo");

和:

Conexion conexion = new Conexion();
conexion.setOnResultsListener(this);
conexion.execute("tipo");
于 2012-12-12T14:11:06.517 回答