You could do this: String str = "..."; List<String> elephantList = Arrays.asList(str.split(","));. Basically the .split() method will split the string ...
確定! 回上一頁