How to convert an arrayList.toString() into an actual arraylist

前端 未结 3 1745
无人及你
无人及你 2021-01-20 14:06

In my software, since there is no Array data type in SQLite, I saved my ArrayList as a String. Now I need to use my array

3条回答
  •  后悔当初
    2021-01-20 14:36

    Then it the method that only accepts strings would be able to add a case where something like this were passed in?

    methodThatOnlyAllowsStrings((Object)list);
    

提交回复
热议问题