首页 > 编程 > JSP > 正文

常见JSP中文乱码例子及其解决_方法

2019-11-02 14:34:21
字体:
来源:转载
供稿:网友

      JSP开发应用是,中文乱码是个比较常见的问题,其根源是:Web容器默认的字符处理编码是ISO-8859-1。

实例一、JSP页面显示时

<html>     <head>        <title>中文乱码——JSP页面显示时</title>     </head>     <body>        <center>            <br/>            <h1>木兰辞拟古决绝词柬友</h1>            <p>人生若只如初见,何事秋风悲画扇。</p>        <p>等闲变却故人心,却道故人心易变。</p>        <p>骊山语罢清宵半,泪雨霖铃终不怨。</p>        <p>何如薄幸锦衣郎,比翼连枝当日愿。</p>        </center>     </body> </html> 

运行结果:

解决方法:为其指定中文字符集,<html>前加入

<%@ page contentType="text/html;charset=gb2312" %> 

实例二、JSP页面传递中文参数时

注册页面:

<%@ page contentType="text/html;charset=gb2312" %> <html>     <head>        <title>中文乱码——JSP页面传递中文参数时</title>     </head>     <body>        <h2>申请账号:</h2>        <form action="userMsg.jsp" method="POST">            <p>邮箱:&nbsp;<input type="text"name="email" id="email"/><p/>            <p>昵称:&nbsp;<input type="text"name="nickname" id="nickname"/><p/>  &n

bsp;         <p>密码:&nbsp;<input type="password"name="password" id="password"/><p/> 

发表评论 共有条评论
用户名: 密码:
验证码: 匿名发表