首页 诗词 字典 板报 句子 名言 友答 励志 学校 网站地图
当前位置: 首页 > 教程频道 > 网站开发 > Web前端 >

encodeURIComponent与encodeURI差异

2012-11-23 
encodeURIComponent与encodeURI区别encodeURIComponent() 函数可把字符串作为 URI 组件进行编码。encodeURI

encodeURIComponent与encodeURI区别

encodeURIComponent() 函数可把字符串作为 URI 组件进行编码。
encodeURIComponent(URIstring)
该方法不会对 ASCII 字母和数字进行编码,也不会对这些 ASCII 标点符号进行编码: - _ . ! ~ * ' ( ) 。

?

encodeURI() 函数可把字符串作为 URI 进行编码。
encodeURI(URIstring)
该方法的目的是对 URI 进行完整的编码,因此对以下在 URI 中具有特殊含义的 ASCII 标点符号,encodeURI() 函数是不会进行转义的:;/?:@&=+$,#

?

encodeURIComponent() 函数 与 encodeURI() 函数的区别之处:

前者假定它的参数是 URI 的一部分(比如协议、主机名、路径或查询字符串).

?

要连续两次调用 encodeURI(String) 方法
是因为 Java 中的 request.getParameter(String) 方法会进行一次 URI 的解码过程,调用时内置的解码过程会导致乱码出现。
而 URI 编码两次后, request.getParameter(String) 函数得到的是原信息 URI 编码一次的内容。
接着用 java.net.URLDecoder.decode(String str,String codename) 方法,将已经编码的 URI 转换成原文。

?

comment=encodeURIComponent("http://cang.baidu.com/bruce42");var pdata="method=updateComment&date="+dateStr+"&comment="+comment;pdata=encodeURI(encodeURI(pdata));

?

//BookingDaysCommentForm.javapublic void setComment(String comment) {try {this.comment = java.net.URLDecoder.decode(comment,"utf-8");} catch (UnsupportedEncodingException e) {// TODO Auto-generated catch blockthis.comment = comment;LOGGER.error("Decode comment error:"+e.getMessage());}catch (RuntimeException re){this.comment = comment;LOGGER.error("Decode comment RuntimeException:"+re.getMessage());} }

?

?

//BookingDaysCommentOpenAction.javaString formatComment = formBean.getComment();formatComment = java.net.URLDecoder.decode(formatComment,"utf-8");

?

热点排行