将以下字符串用java转成list[[0,0,0,0,0,0]]
时间: 2024-05-01 14:18:00 浏览: 73
浅谈java 字符串,字符数组,list间的转化
可以使用以下代码将字符串转换为List:
```
String str = "[[0,0,0,0,0,0]]";
str = str.replace("[", "").replace("]", ""); // 去除中括号
String[] arr = str.split(","); // 按逗号分隔字符串
List<Integer> list = new ArrayList<>();
for (String s : arr) {
list.add(Integer.parseInt(s.trim())); // 去除空格并转换为整数
}
List<List<Integer>> result = new ArrayList<>();
result.add(list); // 添加到二维List中
System.out.println(result);
```
输出结果为:`[[0, 0, 0, 0, 0, 0]]`
阅读全文