java - URLEncode - URLDeCode

URLEncode - URLDecode 编码加密  这两个类是jdk中封装的类,不需要额外导入jar包

String   para  =   java.net.URLEncoder.encode("乱码",   "utf-8");    -  编码 

String   para1   =   java.net.URLDecoder.decode(para,   "utf-8");   -  解码

para:   %E4%B9%B1%E7%A0%81

para1:  乱码

String  test = new  String(request.getParameter("zhongguo").getBytes("iso8859_1"));     

zhongguo = java.net.URLDecoder.decode(test,"utf-8"); 

 

编码中的特殊字符http://blog.sina.com.cn/s/blog_6b2d01f60101763v.html  

你可能感兴趣的:(decode)