码迷,mamicode.com
首页 > 编程语言 > 详细

Atitit.软件开发概念(11)--网络子系统--url编码 空格问题URLEncoder java js php

时间:2014-10-30 00:19:07      阅读:302      评论:0      收藏:0      [点我收藏+]

标签:style   blog   http   io   color   ar   使用   java   for   

Atitit.软件开发概念(11)--网络子系统--url编码 空格问题URLEncoder java js php 

 

1. RFC2396标准

 including HTML 4.01 section 17.13.4, and also RFC 1866 (which is supercededby the W3C HTML recommendations).

在form的ContextType是[x-www-form-urlencoded]的时候会对form中的键/值对进行编码,空格被转义成+,其他字符按照[RFC1738]标准处理成%HH的形式。

作者::老哇的爪子Attilax艾龙,EMAIL:1466519819@qq.com

转载请注明来源: http://blog.csdn.net/attilax

 

2. Js urlencode

js对文字进行编码涉及3个函数:escape,encodeURI,encodeURIComponent,相应3个解码函数:unescape,decodeURI,decodeURIComponent

escape不编码字符有69个:*,+,-,.,/,@,_,0-9,a-z,A-Z

encodeURI不编码字符有82个:!,#,$,&,‘,(,),*,+,,,-,.,/,:,;,=,?,@,_,~,0-9,a-z,A-Z

encodeURIComponent不编码字符有71个:!, ‘,(,),*,-,.,_,~,0-9,a-z,A-Z

 

3. 解决之道::

 s = org.tuckey.web.filters.urlrewrite.utils.URLEncoder.encodePathParam("a  b", "utf-8");//a%20%20b

手动replace space to %20

或者

收到url解析时使用

URLDecoder.decode("a++b%20c"));   //a  b c 

4. 参考

URL编码中的空格问题 - 来老师的专栏 - 博客频道 - CSDN.NET.htm

js解码函数 escape,encodeURI,encodeURIComponent比较 - xuchanghao的专栏 - 博客频道 - CSDN.NET.htm

 

 

 

 

Atitit.软件开发概念(11)--网络子系统--url编码 空格问题URLEncoder java js php

标签:style   blog   http   io   color   ar   使用   java   for   

原文地址:http://blog.csdn.net/attilax/article/details/40596359

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