首页 诗词 字典 板报 句子 名言 友答 励志 学校 网站地图
当前位置: 首页 > 教程频道 > JAVA > Java Web开发 >

汉语言变成问号了

2011-12-15 
中文变成问号了为什么写完这段代码之后页面上的中文都变成问号了啊%@ include filetaglib.jsp%html:

中文变成问号了
为什么写完这段代码之后 页面上的中文都变成问号了啊

<%@ include file="taglib.jsp"%>
<html:html>
  <head>
  <html:base/>
  
  <title>My JSP 'query_production.jsp' starting page</title>
  <link href="../style/style.css" rel="stylesheet" type="text/css">
  </head>
  
<body>
<html:form action="query">
<table width="1100" height="117" border="1" align="center" cellpadding="0" cellspacing="0" bordercolor="#000000">
<tbody><tr>
  <th height="20" colspan="2" scope="row"><b><bean:message key="xx.query_production.title"/></b></th>
  </tr>
  <tr>
  <td width="494" scope="row" align="right"><bean:message key="xx.query_production.userID"/></td>
  <td width="592"><html:text property="userID"></html:text></td>
  </tr>
  <tr>
  <td scope="row" align="right"><bean:message key="xx.query_production.ID"/></td>
  <td><html:text property="ID"></html:text></td>
  </tr>
  <tr>
  <td scope="row" align="right"><bean:message key="xx.query_production.serviceID"/></td>
  <td><html:text property="serviceID"></html:text></td>
  </tr>
  <tr>
  <td scope="row" align="right"><bean:message key="xx.query_production.serviceDate"/></td>
  <td><html:text property="serviceDate"></html:text></td>
  </tr>
  <tr>
  <td align="right" scope="row"><html:submit><bean:message key="xx.query_production.query"></html:submit></td>
  <td scope="row"><html:reset><bean:message key="xx.query_production.reset"/></html:reset></td>
  </tr>
</table>
</html:form>
<br><br><table width="1100" border="1" align="center" cellpadding="0" cellspacing="0" bordercolor="#000000">

<tbody><tr>
  <th width="120" scope="col"><bean:message key="xx.query_production.serviceID"/></th>
  <th width="250" scope="col"><bean:message key="xx.query_production.unitName"/></th>
  <th width="100" scope="col"><bean:message key="xx.query_production.linkman"/></th>
  <th width="164" scope="col"><bean:message key="xx.query_production.production_style"/></th>
  <th width="156" scope="col"><bean:message key="xx.query_production.production_model"/></th>
  <th width="113" scope="col"><bean:message key="xx.query_production.price"/></th>
  <th width="173" scope="col">&nbsp;</th>
  </tr>
 <tr>
  <td>&nbsp;</td>
  <td>&nbsp;</td>
  <td>&nbsp;</td>
  <td>&nbsp;</td>
  <td>&nbsp;</td>


  <td>&nbsp;</td>
  <td>&nbsp;<html:submit><bean:message key="xx.query_production.change"/></html:submit>
  <html:submit><bean:message key="xx.query_production.delete"/></html:submit>
  <html:submit><bean:message key="xx.query_production.detail"/></html:submit></td>
  </tr>
  <tr>
  <td>&nbsp;</td>
  <td>&nbsp;</td>
  <td>&nbsp;</td>
  <td>&nbsp;</td>
  <td>&nbsp;</td>
  <td>&nbsp;</td>
  <td>&nbsp;</td>
  </tr>
  <tr>
  <td>&nbsp;</td>
  <td>&nbsp;</td>
  <td>&nbsp;</td>
  <td>&nbsp;</td>
  <td>&nbsp;</td>
  <td>&nbsp;</td>
  <td>&nbsp;</td>
  </tr>
  <tr>
  <td>&nbsp;</td>
  <td>&nbsp;</td>
  <td>&nbsp;</td>
  <td>&nbsp;</td>
  <td>&nbsp;</td>
  <td>&nbsp;</td>
  <td>&nbsp;</td>
  </tr>
  <tr>
  <td>&nbsp;</td>
  <td>&nbsp;</td>
  <td>&nbsp;</td>
  <td>&nbsp;</td>
  <td>&nbsp;</td>
  <td>&nbsp;</td>
  <td>&nbsp;</td>
  </tr>
</tbody></table><br></body>
</html:html>



[解决办法]
页面的编码和编辑器的编码方式不一致吧。
[解决办法]
页面的编码和编辑器的编码方式不一致。

<%@page pageEncoding="UTF-8" contentType="text/html; charset=UTF-8" %>

注意一个pageEncoding="UTF-8" 这个选项 jsp头
[解决办法]
加一个编码方式转换的过滤器
[解决办法]
你用的什么工具编辑的
http://www.10zhizui.cn
[解决办法]
如果我没看错的话你的应该是用struts做的吧!你可以在项目中加上过滤器中文转换,这样就可以避免这个问题了!
[解决办法]
页面的编码和编辑器的编码方式不一致
[解决办法]
支持 fuhao19830308
filter 
具体 demo 看 http://bangyan2003.javaeye.com/admin/show/131754

热点排行