当前位置: 代码迷 >> Web前端 >> encodeURIComponent与encodeURI差异
  详细解决方案

encodeURIComponent与encodeURI差异

热度:117   发布时间:2012-11-23 22:54:33.0
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.java
public void setComment(String comment) {
	try {
		this.comment = java.net.URLDecoder.decode(comment,"utf-8");
	} catch (UnsupportedEncodingException e) {
		// TODO Auto-generated catch block
		this.comment = comment;
		LOGGER.error("Decode comment error:"+e.getMessage());
	}catch (RuntimeException re){
		this.comment = comment;
		LOGGER.error("Decode comment RuntimeException:"+re.getMessage());
	} 
}	

?

?

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

?

  相关解决方案