urlencode 인코딩이란 무엇인가요?
Urlencode 인코딩: URL의 문자열을 인코딩하는 인코딩 방법으로, 주로 URL의 중국어 문자가 깨지는 문제를 해결합니다.
예:
String mytext = java.net.URLEncoder.encode("China", "utf-8") //urlencode 인코딩
String mytext2 = java.net.URLDecoder.decode(mytext, "utf-8"); //urlencode 디코딩
이 두 명령문이 동일한 페이지에 있는 경우 결과는 다음과 같습니다.
mytext: E4B8ADE59BBD
mytex2: 중국