JSP get方法中文乱码解决方案

  今天碰到了一个比较普遍也比较麻烦的问题:中文乱码问题

而且,我们所做的不是单一的WEB应用,做的是短信插件的功能。终于出问题了,出现中文乱

码了。

  一系列的转码方法都试的差不多了,还是不行。由于短信是通过GET方法传递参数过来的。

传递的中文参数显示为乱码……,以前也碰到过类似的问题,但是那是在WEB应用中碰到的问

题,相对来说还是好解决一点。

   怀着试试的心情,还是沿用以前的那种方法吧。

   居然搞定了……,
谈不上分享,算是给自己做个笔记吧。

<%@ page language="java" import="java.util.*" pageEncoding="gb2312"%>
<%
String path = request.getContextPath();
String basePath = request.getScheme()+"://"+request.getServerName()+":"+request.getServerPort()+path+"/";
%>
<%@ page contentType="text/html; charset=gb2312"%>
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<html>
  <head>
  </head>  
  <body>
   <% 	
	request.setCharacterEncoding("gb2312");
	String phone = request.getParameter("Mobile");
	String Msg =new String(request.getParameter   ("Message").getBytes("ISO-8859-1"),"gb2312");		/**义务代码,屏蔽了啊^_^*/
    %>
  </body>
</html>


request.setCharacterEncoding("gb2312");
String phone = request.getParameter("Mobile");
String Msg =new String(request.getParameter   ("Message").getBytes("ISO-8859-1"),"gb2312");
这句才是主角!



 

你可能感兴趣的:(html,jsp,Web,mobile)