Here you can find the source of toList(String[] arr)
Parameter | Description |
---|---|
arr | a parameter |
public static List<String> toList(String[] arr)
//package com.java2s; import java.util.ArrayList; import java.util.List; public class Main { /**/* w w w .j av a2s . c om*/ * array to list * * @param arr * @return if arr is null return null */ public static List<String> toList(String[] arr) { if (null == arr) { return null; } List<String> list = new ArrayList<String>(); for (int i = 0; i < arr.length; i++) { list.add(arr[i]); } return list; } }