[Java] URL 인코딩, 디코딩 URL 인코딩하는 방법 String word = '인코딩 할 문자열' String encodeResult = URLEncoder.encode(word, "UTF-8"); URL 디코딩하는 방법 String word = '디코딩 할 문자열' String decodeResult = URLDecoder.decode(word, "UTF-8"); 프로그래밍/JAVA 2022.08.26