将MySql中的动态数据显示到Android表中

时间:2017-05-06 14:51:54

标签: php android mysql

我需要在Android应用程序中显示数据库中的数据。问题是我(事先)不知道db包含多少列,因为它们是动态添加/删除的。另外,我不知道如何命名列标题。

解决此类问题的最佳方法是什么?

1 个答案:

答案 0 :(得分:0)

因此,了解您可以执行多种类型的响应:

int keys = array.length();
    for(int n = 0; n < array.length(); n++) { 

    JSONObject object = array.getJSONObject(n);
//val is the value of the object
     String val = object.toString();

     }

对于高级获取,请使用GSON lib goo.gl/DZfPwj

查看此答案