Back to project page androidcodes.
The source code is released under:
GNU General Public License
If you think the Android project androidcodes listed in this page is inappropriate, such as containing malicious code/tools or violating the copyright, please email info at java2s dot com, thanks.
package com.java.thread; import java.util.ArrayList; import java.util.Collections; import java.util.List; //from w w w. j av a2 s . c om public class Main { public static void main(String[] argv) throws Exception { String[] alpha = { "A", "E", "I", "O", "U" }; List list = new ArrayList(); Collections.shuffle(list); System.out.println("list"); } }