我需要在Android应用程序中显示数据库中的数据。问题是我(事先)不知道db包含多少列,因为它们是动态添加/删除的。另外,我不知道如何命名列标题。
解决此类问题的最佳方法是什么?
答案 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
查看此答案