码迷,mamicode.com
首页 > Web开发 > 详细

hTTP的URL编码

时间:2017-02-19 12:22:19      阅读:205      评论:0      收藏:0      [点我收藏+]

标签:编码   使用   dem   style   int   pre   span   main   url   


使用jdk提供的类完成URL的编解码


public class UrlDemo {     
         public static void main(String[] args) throws Exception {                  
                   /**
                    * URLEncoder: 进行URL编码
                    */
                   String encode = URLEncoder.encode("张三", "utf-8") ;           // %E5%BC%A0%E4%B8%89
                   System.out.println(encode);               
                   System.out.println("----------------------------------------------");        
                   /**
                    * URLDecoder: 进行解码
                    */
                   String result = URLDecoder.decode(encode, "utf-8") ;
                   System.out.println(result);               
         }
}

 

hTTP的URL编码

标签:编码   使用   dem   style   int   pre   span   main   url   

原文地址:http://www.cnblogs.com/loaderman/p/6415352.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!