Convert String array to ArrayList [duplicate]

I want to convert String array to ArrayList. For example String array is like:

String[] words = new String[]{"ace","boom","crew","dog","eon"};

How to convert this String array to ArrayList?

5 Answers
5

Leave a Comment