Mysql
 sql >> Datenbank >  >> RDS >> Mysql

Holen Sie sich ein Array von MySQL zu Android

Ändern Sie Ihren showEmployee wie folgt:

private void showEmployee() {
    JSONObject jsonObject = null;
    ArrayList<HashMap<String, String>> list = new ArrayList<HashMap<String, String>>();
    try {
        jsonObject = new JSONObject(JSON_STRING);
        JSONObject result = jsonObject.getJSONObject(TAG_JSON_ARRAY);
        JSONArray jsonTags = result.getJSONArray(KEY_USER_TAGS);

        for (int i = 0; i < jsonTags.length(); i++) {
            tags = tags + jsonTags.getString(i);

            HashMap<String, String> employees = new HashMap<>();
            employees.put(KEY_USER_TAGS, jsonTags.getString(i));

        }

    } catch (JSONException e) {
        e.printStackTrace();
    }
}

und setzen Sie Ihre Tags-Zeichenfolge auf eine leere Zeichenfolge (andernfalls ist das erste Objekt null)

   public static String tags = "";

Der Code hat noch einige Logikfehler, Ihre Mitarbeiter-HashMap wird nur den letzten Eintrag enthalten, weil Sie immer eine neue HashMap erstellen.