list 转为数组[] 形式 文章目录 list 转为数组[] 形式1:String类型2:int类型 1:String类型 ArrayList<String> temp = new ArrayList<>(); String[] stringtemp = temp.toArray(new String[temp.size()]) 2:int类型 这个是 JDK8 的特性 int[] result999 = result.stream().mapToInt(Integer::intValue).toArray();