Search
 
SCRIPT & CODE EXAMPLE
 
CODE EXAMPLE FOR JAVA

convert array to list java

/*
Get the Array to be converted.
Create the List by passing the Array as parameter in the constructor of the List with the help of Arrays. asList() method.
Return the formed List.
*/

String[] namedata = { "ram", "shyam", "balram" }; 

List<String> list = Arrays.asList(namedata);
Source by stackoverflow.com #
 
PREVIOUS NEXT
Tagged: #convert #array #list #java
ADD COMMENT
Topic
Name
7+5 =