转载自:http://blog.sina.com.cn/s/blog_3f195d2501000a9b.html
URLENCODE和URLDECODE是比较常用的URL参数转换方法,为以后使用方便,自己归类一下.
一.JavaScript:
编码:encodeURIComponent(URIString)
解码:decodeURIComponent(encodedURIString)
二.ASP:
编码:Server.urlencode(str)
解码:无
三.Asp.Net
编码:HttpUtility.Urlencode(str)
解码:HttpUtility.UrlDecode(str)
四.Php
urlencode(str)编码:
解码:urldecode(str)
五.Java
java.net.URLEncode.encode(str)编码:
java.net.URLDecoder.decode(str)解码: