//用ArrayList实现
ArrayList<String> temp = new ArrayList<String>();
for(...){
temp.add(value);
}
temp.add(anotherValue);
String[] arr = temp.toArray(new String[]{});
本文介绍了一种使用Java的ArrayList将一系列值收集到集合中,并最终转换为字符串数组的方法。通过实例展示了如何添加单个元素及批量添加元素到ArrayList中,最后通过toArray方法将ArrayList转换成数组。
//用ArrayList实现
ArrayList<String> temp = new ArrayList<String>();
for(...){
temp.add(value);
}
temp.add(anotherValue);
String[] arr = temp.toArray(new String[]{});
537

被折叠的 条评论
为什么被折叠?