728x90
반응형

URL 인코딩하는 방법

String word = '인코딩 할 문자열'
String encodeResult = URLEncoder.encode(word, "UTF-8");

 


URL 디코딩하는 방법

String word = '디코딩 할 문자열'
String decodeResult = URLDecoder.decode(word, "UTF-8");
반응형
복사했습니다!