Advertisement
Guest User

JArray

a guest
Sep 19th, 2014
386
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Java 0.24 KB | None | 0 0
  1. SuperList = new ArrayList<String>();
  2. // temp = Мой динамический массив
  3. for(int t=0; t<temp.length; t++){
  4.     String tempArray = temp[t].split("-");
  5.     for(int i=0; i<tempArray.length; i++){
  6.         SuperList.add(tempArray[i]);
  7.     }
  8. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement