[JSP] UrlEncoding 하기

Java/Jsp 2011. 4. 25. 12:05

Jsp 페이지에서 내부적으로 리다이렉트 하는 경우가 발생하면
URL 인코딩을 해서 글자가 깨지는 경우가 발생하는데 그럴때 인코딩을 하면된다. 

클래스
java.net.URLEncoder

Method Summary
static String encode(String s) 
          Deprecated. The resulting string may vary depending on the platform's default encoding. Instead, use the encode(String,String) method to specify the encoding.
static String encode(String s, String enc) 
          Translates a string into application/x-www-form-urlencoded format using a specific encoding scheme.
 

posted by 뚱2