728x90
반응형
URL 인코딩하는 방법
String word = '인코딩 할 문자열'
String encodeResult = URLEncoder.encode(word, "UTF-8");
URL 디코딩하는 방법
String word = '디코딩 할 문자열'
String decodeResult = URLDecoder.decode(word, "UTF-8");
반응형
'프로그래밍 > JAVA' 카테고리의 다른 글
[Java] 자바 환경 변수 설정 (windows11) (0) | 2022.09.07 |
---|---|
[Java] java.io.IOException: Server returned HTTP response code:500 for URL 해결 방법 (0) | 2022.08.29 |
[Java] 시간 지연 방법(Thread, TimeUnit) (0) | 2022.04.04 |
[Java] Java API Reference (0) | 2022.03.25 |
[Java] 날짜와 시간 API (Joda-Time) (0) | 2022.03.24 |