我有字符串ArrayList的打印值。
[a, b, c, d]
这将是String格式。
EG。
String temp = "[a, b, c, d]"
如何将其转换为String对象的ArrayList?
答案 0 :(得分:0)
非常简单的代码
String temp = "[a, b, c, d]";
// trim enclosing brackets and then split by comma and space
String[] array = temp.substring(1, temp.length() - 1).split(", ");
List<String> list = new ArrayList<String>();
for (String s : array) {
list.add(s);
}