To convert array based data into List / Collection based we can use java.util.Arrays
class. This class provides a static method asList(T... a)
that converts array into List / Collection.
package org.kodejava.util;
import java.util.Arrays;
import java.util.List;
public class ArrayAsListExample {
public static void main(String[] args) {
String[] words = {"Happy", "New", "Year", "2021"};
List<String> list = Arrays.asList(words);
for (String word : list) {
System.out.println(word);
}
}
}
The results of our code are:
Happy
New
Year
2021
Latest posts by Wayan (see all)
- How do I create a string of repeated characters? - September 1, 2023
- How do I convert datetime string with optional part to a date object? - August 28, 2023
- How do I split large excel file into multiple smaller files? - April 15, 2023