Java-list and Arrays convert each other

Source: Internet
Author: User

List to array:

List List = new ArrayList (), List.add ("1"), List.add ("2"), final int size = List.size (); String[] arr = (string[]) List.toarray (new string[size]);

Array to list:

1. A more stupid method

string[] words = {...}; list<string> list = new arraylist<string> (words.length); for (String s:words) {List.add (s);}

2. Methods that you can also

Import java.util.Collections; List myList = new ArrayList (); string[] myStringArray = new string[] {"Java", "is", "Cool"}; Collections.addall (MyList, myStringArray);

3. This is OK.

List stooges = Arrays.aslist ("Larry", "Moe", "Curly");//list returned cannot execute add remove. You can use list List = new ArrayList (arrays.aslist (array));

string[] arr = new string[] {"1", "2"}; List List = Arrays.aslist (arr);

Reference: http://www.oschina.net/code/snippet_8676_2652

Java-list and Arrays convert each other

Related Article

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.