zoukankan      html  css  js  c++  java
  • 前台提交数据到后台为乱码问题解决方式

    1、先看浏览器编码是否ok;

    2、修改请求为post;(get提交,中文容易乱码)

    3、接口指定编码utf-8;(指定content-type)

    我的问题是将get改为 post 解决的;

    也可参考其他resource,such as:

    =================================================================

    转自:https://www.cnblogs.com/sxdcgaq8080/p/5741461.html;

    【前台 乱码】 前台单独乱码+后台往前台传输的数据乱码

    解决方法:

    第一:

    <%@ page language="java" import="java.util.*" pageEncoding="UTF-8" contentType="text/html; charset=UTF-8"%> 
    
      这句话是加在每个页面的最上面,在<!DOCTYPE html>之前加的
      并且
      request.setCharacterEncoding("gb2312");

    第二:

     配置Tomcat的 server.xml。
    
      <Connector port="8080" protocol="HTTP/1.1" connectionTimeout="20000" redirectPort="8443" URIEncoding="UTF-8" />
      <Connector port="8009" protocol="AJP/1.3" redirectPort="8443"  URIEncoding="UTF-8"/>
    

    第三:

    配置 web.xml  
         <filter>
          <filter-name>setEncoding</filter-name>
          <filter-class>com.dinner.filter.CharsetFilters</filter-class>
          <init-param>
             <param-name>coding</param-name>
             <param-value>UTF-8</param-value>
          </init-param>
         </filter>
         <filter-mapping>
            <filter-name>setEncoding</filter-name>
            <url-pattern>/*</url-pattern>
         </filter-mapping>

    第四:

     工程编码
         开发中发现Windows版Eclipse默认Java和Web工程的默认编码方式不那么遂人愿,修改方法如下:
         1. Web工程文件编码修改方式
           Window -> Preference -> Content types
           推荐将Web相关文件的编码都设置为UTF-8
         2. Java源文件编码修改方式
           Window -> Preference -> Workspace -> Text file encoding
           Windows平台默认为GBK,Linux平台默认为UTF-8

    第五:

      如果使用ajax前后台数据交互,可以改变传输方式,将type设置为post

    $.ajax({url:"productAdd.htmls",
                            type:"post",
                            data:{
                                "productName" : productName,
                                "productCre" : productCre
                            },
                            success:function(data){
                                if(data != null){
                                    var product = eval("("+data+")");
                                    temp="<tr class='text-c'><td><input type='checkbox' value='"+product.productId+
                                    "'></td><td>"+product.productName+"</td><td><a href='checkdisease.htmls'>【查看疾病信息】</a><a href='updateproduct.htmls'>【更新】</a></td></tr>";
                                    $('.table-bordered tbody tr:first' , parent.document).before(temp);
                                    $('.table-bordered tbody tr:last' , parent.document).remove();
                                }    
                                // var index = parent.layer.getFrameIndex(window.name); 可以用这个获取当前要关闭的layer ,也可以使用parent.indexProductAdd 获取在父层定义的那个layer。open()的弹窗
                                parent.layer.close(parent.indexProductAdd); //获取到layer的弹出窗 关闭它  
                    }});
    复制代码

    这样即可以解决!!!

    第六:

    在type不能设置为post的情况下,可以在后台接收到数据之后,自行进行解码

    【 URLDecoder.decode(condition, "utf-8");】参数1:字符串    参数2:编码方式

    复制代码
    @RequestMapping(value= "/statistics" ,produces = "text/html;charset=UTF-8")
        @ResponseBody 
        public String statistics(HttpServletRequest request,String condition,String  questOptions) throws UnsupportedEncodingException{
            questOptions = questOptions.replaceAll("category=", "");
            String [] questArr = questOptions.split("&");
            
            condition = URLDecoder.decode(condition, "utf-8");
            System.out.println(condition);
            System.out.println(questOptions);
            return null;
        }
    复制代码

    在这里 获取到转码后的字符串的 效果 比【new String(str.getBytes("ISO-8859-1"),"utf-8")】要好得多!

    第七:

      整个项目,单页面跳转的情况下,出现乱码问题怎么解决?

    跳转到:http://www.cnblogs.com/sxdcgaq8080/p/8085680.html

  • 相关阅读:
    HSL制作配色表
    css3 text-overflow制作固定区域的博客列表
    git 安装
    mailto: HTML e-mail 链接
    Sublime Text2 新建文件快速生成Html头部信息和炫酷的代码补全
    Git教程
    javscript 一些常用的工具方法
    LINQ to Entities 不识别方法"System.String ToString()",因此该方法无法转换为存储表达式 的解决方法
    Dictionary and KeyValuePair关系
    C# 类动态添加属性、方法
  • 原文地址:https://www.cnblogs.com/xh_Blog/p/8809021.html
Copyright © 2011-2022 走看看