Mysql
 sql >> Base de données >  >> RDS >> Mysql

Android - La requête mySQL JSON donne NetworkOnMainThreadException

J'ai entendu dire qu'à partir d'ICS, il n'est pas autorisé d'effectuer des opérations réseau sur le fil d'interface utilisateur (principal). Par conséquent, vous devez effectuer cette opération dans un thread séparé. Donc soit utiliser AsyncTask , Fil ou HandlerThread avec Looper et Handler pour effectuer une opération Web. Si vous l'essayez sur un appareil exécutant froyo ou pain d'épice, ce serait bien, mais pas sur ICS.

En ce qui concerne votre tentative de l'exécuter via un gestionnaire ou AsyncTask, cela dépend de la façon dont vous l'avez fait. Collez ce code pour que je voie le problème.

Mettre à jour

public class MySQLAndroidActivity extends ListActivity {

    private static final String url = "http://X.X.X.X/test.php";

    @Override
    protected void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);
        setContentView(R.layout.activity2);

        LoadTask t = new LoadTask();
        t.execute(null);

    }

    private static class LoadTask extends AsyncTask<Void, Void, Void> {
        @Override
        protected void onPreExecute() {

        }

        @Override
        protected Void doInBackground(Void... params) {
            doStuff();

            return null;
        }
    }





    public static void doStuff() {
        JSONArray jArray;
        String result = null;
        InputStream is = null;
        StringBuilder sb = null;
        HttpResponse response;
        HttpEntity entity;

        ArrayList<NameValuePair> nameValuePairs = new ArrayList<NameValuePair>();
        // http post
        try {
            HttpClient httpclient = new DefaultHttpClient();

            HttpPost httppost = new HttpPost(url);

            httppost.setEntity(new UrlEncodedFormEntity(nameValuePairs));
            response = httpclient.execute(httppost);

            entity = response.getEntity();

            is = entity.getContent();

        } catch (Exception e) {
            Log.e("log_tag", "Error in http connection" + e.toString());
            System.exit(1);
        }

        // convert response to string
        try {
            BufferedReader reader = new BufferedReader(new InputStreamReader(is, "iso-8859-1"), 8);
            sb = new StringBuilder();
            sb.append(reader.readLine() + "\n");

            String line;
            while ((line = reader.readLine()) != null) {
                sb.append(line);
            }
            is.close();
            result = sb.toString();

            Log.i("json string", result);
        } catch (Exception e) {
            Log.e("log_tag", "Error converting result " + e.toString());
        }


        // parsing data
        String idfriend;
        String id1;
        String id2;
        try {
            jArray = new JSONArray(result);
            JSONObject json_data = null;

            System.out.println("Length " + jArray.length());
            Log.d("DB", "Length " + jArray.length());

            for (int i = 0; i < jArray.length(); i++) {

                System.out.println("counter " + i);
                json_data = jArray.getJSONObject(i);
                idfriend = json_data.getString("idfriend");
                id1 = json_data.getString("id1");
                id2 = json_data.getString("id2");

                System.out.println("id1: " + id1);
            }
        } catch (JSONException e1) {
            Log.d("DB", "Error somewhere");
        } catch (ParseException e1) {
            e1.printStackTrace();
        }
    }

}

* Il y avait quelques problèmes d'appel de méthode et le plus important était que vous récupériez les clés de JSONObject en tant que Idfriend, Id1, Id2 ce qui est faux car dans votre chaîne json les clés sont comme idfriend, id1, id2 . C'est sensible à la casse, c'est pourquoi il plantait.