- list to array
List<String> list = new ArrayList<>();
String[] strArray = list.toArray(new String[list.size()]);
OR
String[] strArray = list.toArray(new String[0]);
- array to list
List<String> newList = Arrays.asList(strArray());
List<String> newList = new ArrayList<>(Arrays.asList(strArray());
http://arabiannight.tistory.com/entry/자바Java-String을-List-List를-String-배열로-변환
https://stackoverflow.com/questions/5374311/convert-arrayliststring-to-string-array
https://hianna.tistory.com/551
https://www.baeldung.com/convert-array-to-list-and-list-to-array
- set to list & list to set
https://www.baeldung.com/convert-list-to-set-and-set-to-list
- set to array & array to set
https://www.baeldung.com/convert-array-to-set-and-set-to-array
'java' 카테고리의 다른 글
서버 IP 가져오기 (0) | 2020.09.19 |
---|---|
자바 프로그래머가 자주 실수 하는 10가지 (0) | 2018.11.02 |
JAVA - 유니코드를 한글(문자열)로 변환 (0) | 2018.09.17 |
java8에서 timezone 다루기 (0) | 2018.09.05 |
현재 디렉토리 절대경로 구하기 (0) | 2017.11.23 |