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 build simple search page using ZK and Spring Boot? - March 8, 2023
- How do I calculate days between two dates excluding weekends and holidays? - January 12, 2023
- How do I discover the quarter of a given date? - January 11, 2023