Skip to content

Instantly share code, notes, and snippets.

@morishjs
Last active July 25, 2016 05:08
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save morishjs/09bd72c206793436af91d8cb26549a8e to your computer and use it in GitHub Desktop.
Save morishjs/09bd72c206793436af91d8cb26549a8e to your computer and use it in GitHub Desktop.
Concatenate the array of strings.
String[] arrTest = { "1", "2", "3"};
List alTest = new ArrayList(Arrays.asList(arrTest));
String[] arrTest2 = { "4", "5", "6"};
Collections.addAll(alTest, arrTest2);
@morishjs
Copy link
Author

need to consider again.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment