Java convert ArrayList to string and back to ArrayList?

后端 未结 6 1371
一个人的身影
一个人的身影 2020-12-29 11:30

I wanted to save an ArrayList to SharedPreferences so I need to turn it into a string and back, this is what I am doing:

// Save to shared preferences
Shared         


        
6条回答
  •  失恋的感觉
    2020-12-29 11:59

    The page http://mjiayou.com/2015/07/22/exception-gson-internal-cannot-be-cast-to/ contains the following:

    Type     type  = new TypeToken>(){}.getType();
    List  list  = gson.fromJson(jsonString, type)
    

    perhaps it will be helpful.

提交回复
热议问题