Java convert ArrayList to string and back to ArrayList?

后端 未结 6 1384
一个人的身影
一个人的身影 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条回答
  •  猫巷女王i
    2020-12-29 11:59

    Try this

    ArrayList array = Arrays.asList(arrayString.split(","))
    

    This will work if comma is used as separator and none of the items have it.

提交回复
热议问题