ArrayList<String> UserList = new ArrayList<String>();
UserList = (ArrayList<String>) param.get("User");
String separator = ",";
String Users = String.join(separator, UserList);
출처 : https://www.techiedelight.com/ko/delete-extra-separator-end-string/
String.join은 각각의 String을 하나의 String으로 합쳐주거나 Array(배열)을 하나의 String으로 바꿔주는 메서드이다.
자바8부터 지원되는 메서드
출처 : https://zorba91.tistory.com/34
'기록 > Java&Spring&Eclipse' 카테고리의 다른 글
[Java] import java.util cannot be resolved (0) | 2022.10.27 |
---|---|
[Java/Spring] 스프링 어노테이션 @RestController, @Value (0) | 2022.10.27 |
[Java] 자바 cannot make a static reference to the non-static field 오류 (0) | 2022.10.12 |
[Java] 자바 Map 차이점 (0) | 2022.10.11 |
[Java/Spring] 자바 sql 오류 java.sql.SQLSyntaxErrorException: Incorrect number of arguments 해결 방법 (0) | 2022.10.07 |