数组如下-
String arr[] = { "One", "Two", "Three", "Four", "Five" };
现在,使用Array.asList()将上面的数组转换为列表-
List<String>myList = Arrays.asList(arr);
以下是将数组转换为Java中的列表的程序-
import java.util.*; public class Demo { public static void main(String[] args) { String arr[] = { "One", "Two", "Three", "Four", "Five" }; System.out.println("Array = "+ Arrays.toString(arr)); List<String>myList = Arrays.asList(arr); System.out.println("List (Array to List) = " + myList); } }
输出结果
Array = [One, Two, Three, Four, Five] List (Array to List) = [One, Two, Three, Four, Five]