我想知道如何将我的ArrayList转换为JSonArray我确实丢失了日期。 数组是完全填充的,这是logcat显示的方式:
ArrayList: [{sp_pod=0, et=Mike}, {sp_pod=1, et=Charlie}, {sp_pod=2, et=Paul}]
JSONArray of ArrayList: [{"sp_pod":0,"et":null},{"sp_pod":1,"et":null},{"sp_pod":2,"et":null}]
这是代码:
Log.e( TAG , "ArrayList: " + listArray );
Log.e( TAG , "JSONArray of ArrayList: " + new JSONArray( listArray ) );
有任何线索吗?
PS:我想避免使用GSon,因为我不需要高级JSon管理,只能从服务器发送和获取json
修改
我试图改变"逻辑"构造ArrayList,但它就像JSONArray不接受字符串!