Notice
Recent Posts
Recent Comments
Link
개발 무지렁이
[Spring Boot] Util클래스에서 URL 한글 인코딩하기 본문
URLEncoder 클래스
[Util.java]
public class Util {
public static class url {
public static String encode(String str) {
try {
return URLEncoder.encode(str, "UTF-8");
} catch (UnsupportedEncodingException e) {
return str;
}
}
}
}
❓ 내부 클래스를 사용하는 이유
: 내부 클래스는 딱히 외부에서 독자적으로 쓰일 일이 없으면
내부 클래스로 만들어주는 것이 좋다.
=> 코드의 의도를 명시적으로 표현
'Backend > 스프링부트' 카테고리의 다른 글
[Spring Boot] 어노테이션 정리 - 1 (0) | 2022.12.31 |
---|---|
[Spring Boot] toastr을 이용해서 성공메세지 보여주기 (0) | 2022.12.30 |
[Spring Boot] 결과보고서 RsData (0) | 2022.12.29 |
[Spring Boot] 업로드된 파일의 메타정보 (0) | 2022.12.27 |
[Spring Boot] 때에 따라 업로드 개수가 다를 경우, MultipartRequest (0) | 2022.12.26 |
Comments