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

jsp中文显示问号问题解决方法

程序员文章站 2023-11-13 18:13:34
问题: jsp中想要输出的中文被显示成“?” 解决方法 : 在eclipse-windows- preferences中 搜索jsp , encoding选项中选择 chi...
问题: jsp中想要输出的中文被显示成“?”

解决方法 : 在eclipse-windows- preferences中 搜索jsp , encoding选项中选择 chinese 。 这样新建的jsp文件将支持中文显示。

对已经存在的jsp文件做如下修改: 将各种编码方式都改成gb18030,如下:
复制代码 代码如下:

<%@ page language="java" contenttype="text/html; charset=gb18030"
pageencoding="gb18030"%>
<!doctype html public "-//w3c//dtd html 4.01 transitional//en" "http://www.w3.org/tr/html4/loose.dtd">
<html>
<head>
<meta http-equiv="content-type" content="text/html; charset=gb18030">
<title>hello</title>
</head>
<body>
你好
</body>
</html>

则“你好”可正确显示