欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  IT编程

jsp传值中文乱码问题解决方法示例介绍

程序员文章站 2023-11-29 20:28:40
在jsp中,我们经常从数据库读取数据返回客户端,但我们常常在制作时出现乱码现象,所以我们可以用<%request.setcharacterencoding("utf-...
在jsp中,我们经常从数据库读取数据返回客户端,但我们常常在制作时出现乱码现象,所以我们可以用<%request.setcharacterencoding("utf-8");%>这个方法来保证中文的正确输出,下面举个例子吧,
我们要接住表单的值或者把数据库数据打印出来的之前,先把<%request.setcharacterencoding("utf-8");%>放在他们的前面,然后,表单的提交方式必须是post,即method="post",这样可以闭避免乱码了,请看下面:
复制代码 代码如下:

<%request.setcharacterencoding("utf-8");%>
<form action="" method="post">
姓名:<input type="text" name="name"/>
<br/>
性别:<input type="text" name="sex" />
<%
string name=requset.getparameter("name");
string sex=request.getparameter("sex");out.print(name);
out.print(sex);
%>
</form>

或者有时用户登陆时,我们需要在某一页用到用户名或者密码,我们可以用下面这种方法来记住,在其他页面可以随便调用,如:
复制代码 代码如下:

<form action="" method="post">
用户名:<input type="text" name="name"/>
<br/>
密码:<input type="password" name="password" />
<form/>
string name=requset.getparameter("name");
string password=request.getparameter("password");
application.setattribute("names",name);
application.setattribute("passwords",password);密码和用户名就这样被记住了,在其他也可以随便调用,如下
application.getattribute(“names");
application.getattribute("passwords");
<%
out.print(application.getattribute(“names"));
out.print(application.getattribute(“passwords")
%>

这样就会输出文本框的值