Skip to content

Instantly share code, notes, and snippets.

@Manuel4131
Created October 21, 2019 08:00
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 Manuel4131/69e9e67426d7978392338ca2fec4cc60 to your computer and use it in GitHub Desktop.
Save Manuel4131/69e9e67426d7978392338ca2fec4cc60 to your computer and use it in GitHub Desktop.
Fast way to convert String[] to Arraylist
Ref:https://stackoverflow.com/questions/10530353/convert-string-array-to-arraylist
Use
```Java
Collections.add(ArrayList, String[]);
```
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment