`
javasss
  • 浏览: 66837 次
  • 性别: Icon_minigender_1
  • 来自: 河南
社区版块
存档分类
最新评论

JSP、AJax中文乱码问题解决,escape(), encodeURI(), encodeURIComponent(),js对参数连续两次调用 encodeU

阅读更多
ajax检证用户就否存在和解决乱码问题!
原文:http://user.qzone.qq.com/278887848/blog/11
写了一个ajax,在向服务器端发送数据时产生乱码。。在查阅一些资料后,通过测试!^_^。。。
<script> 
var XMLHttpReq=false;
   function checkProviderName(){
    if( "" == DWRUtil.getValue('name').trim() ){
      alert("服务商全称不能为空");
      ProviderForm.name.focus();
      return false;
     }else if( validateCN(DWRUtil.getValue('name').trim()) ){
         alert("服务商全称输入错误");
         ProviderForm.name.focus();
         return false;
     }else if( validateSafe(DWRUtil.getValue('name').trim())){
      alert('服务商全称不要使用非法字符!');
      ProviderForm.name.focus();
      return false;
     }

     if(window.XMLHttpRequest){ //Mozilla
           XMLHttpReq=new XMLHttpRequest();
         
        }else if(window.ActiveXObject){
           try{
            XMLHttpReq=new ActiveXObject("Msxml2.XMLHTTP");
           }catch(e){
           try{
            XMLHttpReq=new ActiveXObject("Microsoft.XMLHTTP");
           }catch(e){}
           }
        }
        var temp=DWRUtil.getValue('name').trim();
       
       
        var url="<%=request.getContextPath()%>/action /service_provider.do?act=checkProviderName& name="+encodeURI(encodeURI(temp));//要执行两次的encodeURI////关键!!!!!
     
        XMLHttpReq.open("GET",url,true);
        XMLHttpReq.;
       
        XMLHttpReq.setrequestheader("cache-control","no-cache");
       
        XMLHttpReq.setrequestheader("Content-Type","text/html; encoding=UTF-8");

        XMLHttpReq.send(null);
  }
  function checkP(){
        if(XMLHttpReq.readyState==4){ //对象状态
           if(XMLHttpReq.status==200){//信息已成功返回,开始处理信息   
                 <!--测试读取xml开始-->
          var root=XMLHttpReq.responseXML;
          var res=root.getElementsByTagName("res")[0].firstChild.data;
          window.alert(res);
         
           <!--测试读取xml结束--> 
          }else{
             window.alert("所请求的页面有异常");
          }
        }
      }
</script>

action.
public ActionForward checkProviderName(
   ActionMapping mapping, ActionForm form,
     HttpServletRequest request, HttpServletResponse response) throws Exception{
  ProviderForm providerForm =(ProviderForm)form;
  response.setContentType("text/xml; charset=UTF-8");
  PrintWriter out = response.getWriter();
  out.println("<response>");
  String strNameEn = java.net.URLDecoder.decode(providerForm.getName(), "UTF-8");////解码关键!!!!
  System.out.println("sname+++++++++++>>"+strNameEn);
  if(checkProviderName(strNameEn)){
   out.println("<res>" + "可以注册!" + "</res>");
  }else{
   out.println("<res>" + "不可以注册!" + "</res>");
  }
  out.println("</response>");
  return null;
Javascript escape(), encodeURI(), encodeURIComponent()

出处:http://aaron-ch.javaeye.com/blog/80160

关键字: Ajax,URI encode

escape():

The escape method returns a string value (in Unicode format) that contains the contents of [the argument]. All spaces, punctuation, accented characters, and any other non-ASCII characters are replaced with %xx encoding, where xx is equivalent to the hexadecimal number representing the character. For example, a space is returned as "%20."




encodeURI():

The encodeURI method returns an encoded URI. If you pass the result to decodeURI, the original string is returned.

The encodeURI method does not encode the following characters: ":", "/", ";", and "?".

Use encodeURIComponent to encode these characters.

encodeURIComponet():

The encodeURIComponent method returns an encoded URI. If you pass the result to decodeURIComponent, the original string is returned. Because the encodeURIComponent method encodes all characters, be careful if the string represents a path such as /folder1/folder2/default.html. The slash characters will be encoded and will not be valid if sent as a request to a web server. Use the encodeURI method if the string contains more than a single URI component
When to use which?

The escape() method does not encode the + character which is interpreted as a space on the server side as well as generated by forms with spaces in their fields. Due to this shortcoming and the fact that this function fails to handle non-ASCII characters correctly, you should avoid use of escape() whenever possible. The best alternative is usually encodeURIComponent().

escape() will not encode: @*/+

Use of the encodeURI() method is a bit more specialized than escape() in that it encodes for URIs  as opposed to the querystring, which is part of a URL. Use this method when you need to encode a string to be used for any resource that uses URIs and needs certain characters to remain un-encoded. Note that this method does not encode the ' character, as it is a valid character within URIs.

encodeURI() will not encode: ~!@#$&*()=:/,;?+'

Lastly, the encodeURIComponent() method should be used in most cases when encoding a single component of a URI. This method will encode certain chars that would normally be recognized as special chars for URIs so that many components may be included. Note that this method does not encode the ' character, as it is a valid character within URIs.

encodeURIComponent() will not encode: ~!*()'

对比 javascript url编码

原文:http://www.javaeye.com/topic/198530

escape() 方法: 采用ISO Latin字符集对指定的字符串进行编码。所有的空格符、标点符号、特殊字符以及其他非ASCII字符都将被转化成%xx格式的字符编码(xx等于该字符在字符集表里面的编码的16进制数字)。比如,空格符对应的编码是%20。
不会被此方法编码的字符: @ * / +

encodeURI() 方法:把URI字符串采用UTF-8编码格式转化成escape格式的字符串。
不会被此方法编码的字符:! @ # $& * ( ) = : / ; ? + '

encodeURIComponent() 方法:把URI字符串采用UTF-8编码格式转化成escape格式的字符串。与encodeURI()相比,这个方法将对更多的字符进行编码,比如 / 等字符。所以如果字符串里面包含了URI的几个部分的话,不能用这个方法来进行编码,否则 / 字符被编码之后URL将显示错误。
不会被此方法编码的字符:! * ( ) '
因此,对于中文字符串来说,如果不希望把字符串编码格式转化成UTF-8格式的(比如原页面和目标页面的charset是一致的时候),只需要使用 escape。如果你的页面是GB2312或者其他的编码,而接受参数的页面是UTF-8编码的,就要采用encodeURI或者 encodeURIComponent。
另外,encodeURI/encodeURIComponent是在javascript1.5之后引进的,escape则在javascript1.0版本就有。

为什么要连续两次调用 encodeURI(String) 方法?

原文:http://hi.baidu.com/zhuguoneng/blog/item/96ca9c1f3d67a966f724e465.html


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

相关推荐

    Ajax中文乱码问题解决方案

    本文将深入探讨Ajax中文乱码问题的成因,并提供一系列解决方案。 **一、问题原因** 1. **编码格式不一致**:服务器与客户端(浏览器)之间使用的字符编码格式不同,例如服务器使用GBK编码,而浏览器使用UTF-8编码...

    ajax中文乱码如何解决

    在本文中,我们将深入探讨如何解决使用Ajax进行POST请求时出现的中文乱码问题。首先,我们要理解Ajax中文乱码的根源,它通常涉及到字符编码的不一致,尤其是在客户端与服务器之间的通信过程中。 Ajax(Asynchronous...

    javaScript encodeURI中文乱码

    ### JavaScript encodeURI中文乱码问题解析与解决方案 在Web开发中,处理中文字符或其它非ASCII字符时,经常遇到的问题之一就是编码问题,特别是在URL处理过程中。JavaScript中的`encodeURI()`函数是用于对URL进行...

    ajax解决中文乱码(java/jsp)

    ### AJAX解决中文乱码(Java/JSP) #### 知识点概述 在Web开发中,尤其是在使用Java与JSP技术栈进行开发时,经常会遇到的一个问题是:如何处理AJAX请求中的中文字符乱码问题。本篇文章将详细介绍如何通过前端编码...

    URL传中文参数导致乱码的解决方案之encodeURI

    为了解决这个问题,我们可以利用JavaScript中的`encodeURI`函数来对中文参数进行编码,然后在服务端进行相应的解码操作。 `encodeURI`函数是JavaScript提供的一个内置方法,它的作用是对整个URL进行编码,包括特殊...

    java认证_Ajax中文乱码问题及解决方法.doc

    在jQuery的Ajax请求中,可以对包含中文的参数进行两次`encodeURI`编码。这是因为`encodeURI`函数可以编码URI中的特殊字符,但保留某些特殊字符,如空格。在前端,修改Ajax请求的data部分如下: ```javascript data:...

    java中文乱码之解决URL中文乱码问题的方法

    在Java开发中,遇到中文乱码问题是一种常见的挑战,特别是在处理URL时。URL中文乱码问题主要是由于URL编码和解码过程中的不一致导致的。下面将详细介绍如何解决这个问题,并探讨几种常用的方法。 首先,我们需要...

    ajax传递中文参数乱码解决办法

    ### AJAX传递中文参数乱码解决办法 在Web开发过程中,数据传输是不可或缺的一部分,而AJAX作为一种无需重新加载整个页面的情况下就能与服务器交换数据的技术,被广泛应用于动态数据交互场景中。然而,在处理中文等...

    extjs 前后台交互参数出现中文乱码问题的解决方法

    ### extjs前后台交互参数出现中文乱码问题的解决方法 #### 问题背景与原因分析 在使用MyEclipse开发工具进行Web应用开发时,尤其是采用ExtJS框架结合Ajax技术进行前后端数据交互的过程中,可能会遇到一个常见的...

    js中文乱码问题分析及解决方案.docx

    js中文乱码问题分析及解决方案 在Web开发中,JavaScript文件的编码问题是一个常见的错误,特别是在引入外部JavaScript文件时。如果Web页面和JavaScript文件使用不同的编码,可能会出现乱码问题。本文将分析...

    ajax到servlet乱码解决

    通过使用 `encodeURI()` 函数在 AJAX 客户端编码 URL 参数和使用 `URLDecoder` 类在 Servlet 服务器端解码 URL 参数,我们可以解决 AJAX 到 Servlet 乱码问题。这样,我们的应用程序可以正确地处理中文参数,从而...

    escape、encodeURI、encodeURIComponent 区别详解

    ### escape、encodeURI、encodeURIComponent 区别详解 在前端开发中,经常需要用到字符串编码与解码的方法来确保数据在网络传输中的正确性与安全性。本文将详细介绍 `escape()`、`encodeURI()` 和 `...

    AJAX中文乱码问题探讨及解决

    AJAX中文问题分为两大类: 1)发送路径中的参数有中文,在服务器段接收参数值是乱码 例如: var url=”a.jsp?name=小李”; xmlHTTP.open (“post”,url,true); 解决办法: 利用javascript的提供的escape()或...

    ajax提交,后台中文乱码解决

    在第一个示例中,开发者通过调用`encodeURIComponent()`或`encodeURI()`函数对请求URL中的参数进行编码。这是因为在发送HTTP请求时,URL中的特殊字符和非ASCII字符需要被转换成一种可传输的格式。`...

    JS中三种编码方式(escape,encodeURI,encodeURIComponent)

    总结来说,理解并正确使用`escape`、`encodeURI`和`encodeURIComponent`是JavaScript开发中的重要技能,它们有助于确保数据在网络中的安全传输和正确解析。在处理URL、查询参数或其他需要编码的数据时,要根据具体...

    ajax乱码解决方案

    - **方法二**:在Ajax请求中对POST数据进行两次`encodeURI`编码,确保数据正确发送。 ```javascript var post = "name=" + document.getElementById("postval").value; post = encodeURI(post); post = encodeURI...

    Ajax乱码小结

    根据题目中的描述,“Ajax乱码:当调用`request.getParameter()`函数时,会自动进行一次URI的解码过程,调用时内置的解码过程会导致乱码出现。而URI 编码两次后,`request.getParameter()`函数得到的是原信息URI编码...

    解决JS传递中文乱码问题

    ### 解决JS传递中文乱码问题 在Web开发过程中,我们经常会遇到中文字符编码的问题,尤其是在前后端数据交互时,中文字符的乱码问题更是让人头疼。本文将深入探讨如何解决JavaScript(简称JS)在传递中文字符时出现...

Global site tag (gtag.js) - Google Analytics