1. 编写 login.jsp,登录时只输入一个昵称。但要检查昵称是否已经被其他用户使用。
源代码
Login.jsp
<%@ page contentType="text/html;charset=UTF-8" language="java" %><%request.setCharacterEncoding("UTF-8"); //设置编码String username = request.getParameter("username"); //获取用户名if(application.getAttribute("login")==null){Map<String,Integer> map=new HashMap<>();map.put(username,0);application.setAttribute("login",map);session.setAttribute("logging",username);response.sendRedirect("game.jsp");}else{Map cur=(Map)application.getAttribute("login");if(cur.containsKey(username))out.print("<script>alert('此昵称已有人使用过!请重新输入');location.href='login.jsp';</script>");else {cur.put(username,0);application.setAttribute("login",cur);session.setAttribute("logging",username);response.sendRedirect("game.jsp");}}%>
2. 编写 game.jsp, 每次游戏程序随机产生一个 0-9 之间的整数,要求玩家输入自己猜的 数字,并对用户输入数字进行检查,进行如下提示:
(1)如果用户猜对了,则提示:恭喜你,猜对了。结束本次游戏。
(2)如果用户猜错了,则提示:你猜的数字太(大或小)了。要求用户继续猜。 如果连续 3 次没有猜对,则提示:游戏失败。
一次游戏结束时,将用户本次猜数字情况记入“排行榜”。
然后询问用户是否继续新的游戏,果用户选择继续,则开始新一次游戏,
3. 必须登录后才能进入游戏页面,而进入登录页面和排行榜页面,无须登录
源代码
Game.jsp
<%@ page contentType="text/html;charset=UTF-8" language="java" %>
<html>
<head><title>Title</title>
</head>
<body>
<%String user=(String) session.getAttribute("logging");if(user==null)response.sendRedirect("login.jsp");int number=(int)(Math.random()*10)+1;session.setAttribute("num",number);session.setAttribute("count",0);
%>
<%=user%>登录成功
输入你猜的数
<form action="Result.jsp" method="post" name=form><input type="text" name="boy"><input type="submit" value="提交" name="submit">
</form>
</body>
</html>Result.jsp
<%@ page contentType="text/html;charset=UTF-8" language="java" %>
<html>
<head><title>Title</title>
</head>
<body>
<%String str=request.getParameter("boy");int guessNumber=Integer.parseInt(str);int n= (Integer) session.getAttribute("count");int realnumber= (Integer)session.getAttribute("num");if(n==3||guessNumber==realnumber) response.sendRedirect("successjsp.jsp");if(guessNumber>realnumber){n=n+1;session.setAttribute("count", n);out.println("你猜的数字太大了<br>");}else {n=n+1;session.setAttribute("count", n);out.println("你猜的数字太小了<br>");}
%>
输入你猜的数
<form action="Result.jsp" method="post" name=form><input type="text" name="boy"><input type="submit" value="提交" name="submit">
</form>
</body>
</html>successjsp.jsp
<%@ page contentType="text/html;charset=UTF-8" language="java" %>
<html>
<head><title>Title</title>
</head><body><%Map cur=(Map)application.getAttribute("login");int c= (Integer) cur.get((String)session.getAttribute("logging"));cur.put((String)session.getAttribute("logging"),c+1);application.setAttribute("login",cur);int count= (Integer) session.getAttribute("count");int num= (Integer) session.getAttribute("num");String res=new String();long startTime=session.getCreationTime();long endTime=session.getLastAccessedTime();if(count==4)res="游戏失败";elseres="游戏成功";%>
游戏结果:<%=res%>
您共猜错了<%=count-1%>次
用时<%=(endTime-startTime)/1000 %>秒
这个数字就是<%=num %>
<form action="game.jsp" method="post" name=form><input type="submit" value="重新开始" name="submit">
</form>
</body>
</html>Rank.jsp
<%@ page contentType="text/html;charset=UTF-8" language="java" %>
<html>
<head><title>Title</title>
</head>
<h1>排行榜</h1>
<body>
<%Map cur=(Map)application.getAttribute("login");out.println("用户名"+" "+"成功次数<br/>");for(Object c:cur.keySet()){if(c==null) continue;out.println((String)c+" "+cur.get((String)c)+"<br/>");}%>
</body>
</html>