String name = request.getParameter("name"); byte bb[] = name.getBytes("iso-8859-1"); name = new Str 5
高手帮我看一下上面哪里错啦!都找了很久啦!<%@pagecontentType="text/html;charset=GB2312"%><HTML><BODYBGCOLO...
高手帮我 看一下 上面 哪里 错啦 !都找了 很久啦!
<%@ page contentType = "text/html; charset = GB2312" %>
<HTML><BODY BGCOLOR = YELLOW><FONT SIZE = 3>
<%! int count;
StringBuffer personList;
public void judge(){
if(count == 0)
personList = new StringBuffer();
}
public void addPerson(String p)
{
if(count == 0)
personList.append(p);
else
personList.append("," + p);
count++;
}
%>
<% String name = request.getParameter("name");
byte bb[] = name.getBytes("iso-8859-1");
name = new String(bb);
if(name.length() == 0 || name.length() > 10){
%> <jsp:forward page = "inputName.jsp" />
<% }
judge();
addPerson(name);
%>
<BR> 目前共有<%= count %>人浏览了该页面,他们的名字是:
<BR><%= personList %>
</FONT></BODY></HTML> 展开
<%@ page contentType = "text/html; charset = GB2312" %>
<HTML><BODY BGCOLOR = YELLOW><FONT SIZE = 3>
<%! int count;
StringBuffer personList;
public void judge(){
if(count == 0)
personList = new StringBuffer();
}
public void addPerson(String p)
{
if(count == 0)
personList.append(p);
else
personList.append("," + p);
count++;
}
%>
<% String name = request.getParameter("name");
byte bb[] = name.getBytes("iso-8859-1");
name = new String(bb);
if(name.length() == 0 || name.length() > 10){
%> <jsp:forward page = "inputName.jsp" />
<% }
judge();
addPerson(name);
%>
<BR> 目前共有<%= count %>人浏览了该页面,他们的名字是:
<BR><%= personList %>
</FONT></BODY></HTML> 展开
5个回答
展开全部
是什么问题,乱码?
request.setCharacterEncoding("GB2312");
String name = request.getParameter("name");
byte bb[] = name.getBytes("iso-8859-1");
name = new String(bb,"GB2312");
request.setCharacterEncoding("GB2312");
String name = request.getParameter("name");
byte bb[] = name.getBytes("iso-8859-1");
name = new String(bb,"GB2312");
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
int count;
每次访问页面的时候count都被初始化成零吧,所以你什么目的都达不到
每次访问页面的时候count都被初始化成零吧,所以你什么目的都达不到
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
没贴全呀,你是有什么问题吗
追问
我补充上去啦 您帮我看 一下啊 谢谢啊
追答
是报错了吗?是的话,把异常信息贴出来;
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
做毕业设计也遇到过这种问题。
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询