Biến đổi Array thành Collection trong Java



Miêu tả vấn đề

Cách biến đổi một Array thành một Collection trong Java ?

Giải pháp

Ví dụ sau minh họa cách biến đổi một Array thành một Collection bởi sử dụng phương thức Arrays.asList(name) của lớp Java Util trong Java.

import java.util.*;
import java.io.*;public class ArrayToCollection{
   public static void main(String args[]) 
   throws IOException{
      BufferedReader in = new BufferedReader
      (new InputStreamReader(System.in));
      System.out.println("How many elements 
      you want to add to the array: ");
      int n = Integer.parseInt(in.readLine());
      String[] name = new String[n];
      for(int i = 0; i < n; i++){
         name[i] = in.readLine();
      }
      List list = Arrays.asList(name); 
      System.out.println();
      for(String li: list){
         String str = li;
         System.out.print(str + " ");
      }
   }
}

Kết quả

Code trên sẽ cho kết quả sau:

How many elements you want to add to the array:
red white greenred white green

collection_trong_java.jsp