arrays.aslist添加引号
时间: 2023-08-08 08:09:41 浏览: 99
Arrays.asList方法总结
5星 · 资源好评率100%
arrays.asList() 方法是将数组转换为 List 集合。如果你想要将数组中的元素添加引号,你需要对 List 中的每个元素进行处理。
以下是一个示例代码,将数组中的元素添加引号后,转换为 List 集合:
```
String[] array = {"apple", "banana", "orange"};
List<String> list = new ArrayList<String>();
for (String s : array) {
list.add("\"" + s + "\"");
}
System.out.println(list);
```
输出结果为:["apple", "banana", "orange"],其中每个元素都被添加了双引号。
阅读全文