使用Gson将ArrayList <object>转换为Json

时间:2018-06-25 23:00:03

标签: java android json gson

首先,我是一般编程新手。对于学校,我正在研究一个android项目,我希望能够使用SharedPreferences保存数据,并使用Gson将ArrayList转换为Json。但是,每当我尝试运行它(仿真器)时,我都会在logcat中收到以下消息:

Do full code cache collection, code=125KB, data=66KB
After code cache collection, code=104KB, data=41KB
Background concurrent copying GC freed 36221(1156KB) AllocSpace objects, 3(60KB) LOS objects, 49% free, 1708KB/3MB, paused 5.863ms total 115.252ms
Do partial code cache collection, code=123KB, data=56KB
After code cache collection, code=123KB, data=56KB
Increasing code cache capacity to 512KB

这将持续一段时间,直到我的应用程序崩溃为止。以与此处相同的方式保存其他数据时,我没有遇到这个问题。

代码:

将对象添加到数组

for(int x = 0; x < board.getWidth(); x++ ) {
                for( int y = 0; y < board.getHeight(); y++ ) {

                    Field field = (Field) MainActivity.game.getGameBoard().getObject(x, y);
                    fieldArray.add(field);
                }
            }

转换和保存

SharedPreferences prefs = PreferenceManager.getDefaultSharedPreferences(getApplicationContext());
SharedPreferences.Editor editor = prefs.edit();
Gson objectGson = new Gson();
String objectJson = objectGson.toJson(fieldArray);
edits.putString("gameobjects", objectJson);
editor.apply();

这里可能是什么问题?

2 个答案:

答案 0 :(得分:0)

尝试一下

Type listType = new TypeToken<ArrayList<YourObject>>(){}.getType();

listGalerias = new Gson().fromJson(json, listType);

答案 1 :(得分:0)

好吧,我在这里尝试过类似的事情,我有一个带有一些字段的对象Post,我用Gson填充了这个对象

val url = "http://www.projectconnect.com.br/make/api/post/list/list.php"

val json = URL(url).readText()

val gson = Gson()

val retorno = gson.fromJson(json, Retorno::class.java)

val posts : List<Post> = retorno.list

结果是这个 Post object

后来我做到了

val arrayPosts = arrayOfNulls<Post>(posts.size)
arrayPosts.set(0, posts[0])

for (i in 0 until posts.size) {
    arrayPosts[i] = posts[i]
}

val objectJson = gson.toJson(arrayPosts)

结果是这样 my objectJson populated

这是 objectJson value