Adding comma separated strings to an ArrayList and vice versa

前端 未结 11 1229
旧巷少年郎
旧巷少年郎 2021-01-01 05:18

How to add a comma separated string to an ArrayList? My string \"returnedItems\" could hold 1 or 20 items which I\'d like to add to my ArrayList \"selItemArrayList\".

<
11条回答
  •  执念已碎
    2021-01-01 06:00

    import com.google.common.base.*;
    
    Iterable items = Splitter.on(",").omitEmptyStrings()
                                     .split("Mango,Apple,Guava");
    
    // Join again!
    String itemsString = Joiner.join(",").join(items);
    

提交回复
热议问题