问题遇到的现象和发生背景
文字乱码
遇到的现象和发生背景
可以显示出正常页面,但会乱码,应该怎么解决
用代码块功能插入代码
<%@ page language="java" contentType="text/html; charset=gb2312" pageEncoding="gb2312"%>
<html>
<head>
<title>统计网站访问次数</title>
</head>
<body>
<form method="post" action="count.jsp" name="form">
请输入姓名:
<input type="text" name="name" size=20><br/>
<input type="submit" value="提交">
</form>
</body>
</html>
<%@ page language="java" contentType="text/html; charset=gb2312" pageEncoding="gb2312"%>
<html>
<head>
<title>统计网站访问次数</title>
</head>
<body>
<%!
int count=0;
StringBuffer visitor=new StringBuffer();
public void count(String p){
visitor.append(" "+p);
count++;
}
%>
<%
String name=new String(request.getParameter("name").getBytes("ISO8859-1"),"gb2312");
if(name.length()==0){
%>
<jsp:forward page="SY-3.jsp" />
<%
}
count(name);
%>
<br>目前共有<%=count%>人浏览了本页面,分别是:<br/><%=visitor%>
</body>
</html>
运行结果及详细报错内容
我的解答思路和尝试过的方法
把代码该成过utf-8,可以正常显示,但是跳转到第二个页面后会报错,所以需要在线实时交流
我想要达到的结果
解决我的所有问题就好