系统城装机大师 - 固镇县祥瑞电脑科技销售部宣传站!

当前位置:首页 > 网络编程 > JSP编程 > 详细页面

JSP实现百万富翁猜数字游戏

时间:2020-02-03来源:电脑系统城作者:电脑系统城

本文实例为大家分享了JSP实现百万富翁猜数字游戏的具体代码,供大家参考,具体内容如下

设计一个web app,每次产生一个30以内的数字,给5次机会让客户猜测这个数字:

1)如果客户猜的数字比产生的数字值大,则提示“大了”。
2)如果客户猜的数字比产生的数字值小,则提示“小点”

猜对了就过关,猜错Game Over,给玩家重玩的机会。

JSP代码:


 
  1. <%@ page language="java" contentType="text/html; charset=UTF-8"
  2. pageEncoding="UTF-8"%>
  3. <!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
  4. <html>
  5. <head>
  6. <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
  7. <title>Insert title here</title>
  8. </head>
  9. <body>
  10. <%
  11. String result=(String)request.getAttribute("result");
  12. if(result!=null){
  13. out.write("<font color='red'>"+result+"'</font>");
  14. }
  15. %>
  16.  
  17. <%
  18. Integer times=(Integer)request.getAttribute("times");
  19. if(times!=null){
  20. out.write("你还有"+(5-times)+"次机会!");
  21. }
  22. %>
  23. <br/>
  24. <form action="/zxz/zxz" method="POST">
  25. 请输入你的数(20以下):<input type="text" name="Lucy" /><br/>
  26. <%
  27. if(times!=null){
  28. %>
  29. <input type="hidden" name="times" value="<%=times %>"/>
  30. <%
  31. }
  32. %>
  33. <input type="submit" value="竞猜" />
  34. </form>
  35. </body>
  36. </html>

Servlet代码:


 
  1. package hah;
  2.  
  3. import java.io.IOException;
  4. import java.util.Random;
  5.  
  6. import javax.servlet.ServletException;
  7. import javax.servlet.annotation.WebServlet;
  8. import javax.servlet.http.HttpServlet;
  9. import javax.servlet.http.HttpServletRequest;
  10. import javax.servlet.http.HttpServletResponse;
  11.  
  12.  
  13. /**
  14. * Servlet implementation class zxz
  15. */
  16. @WebServlet("/zxz")
  17. public class zxz extends HttpServlet {
  18. private static final long serialVersionUID = 1L;
  19.  
  20. int answer;
  21. public void newGame() {
  22. Random random=new Random();
  23. answer=random.nextInt(20);
  24. }
  25. public zxz() {
  26. newGame();
  27. }
  28. protected void doGet(HttpServletRequest request, HttpServletResponse response) throwsServletException, IOException {
  29. response.setContentType("text/html;charset=utf-8");
  30. String lucyStr=request.getParameter("Lucy");
  31. Integer lucyNb=null;
  32. System.out.println("答案:"+answer);
  33. if(!lucyStr.equals("")) {
  34. lucyNb=Integer.parseInt(lucyStr);
  35. }
  36. Integer times=1;
  37.  
  38. String timeStr=request.getParameter("times");
  39. if(timeStr!=null&&!timeStr.equals("")) {
  40. times=Integer.parseInt(timeStr)+1;
  41. }
  42. if(times<5) {
  43. String result="";
  44. if(lucyNb>answer) {
  45. result="大了";
  46. }else if(lucyNb<answer) {
  47. result="小了";
  48. }else if(lucyNb==answer) {
  49. result="中了";
  50. times=null;
  51. }
  52. request.setAttribute("times", times);
  53. request.setAttribute("result", result);
  54. }else {
  55. newGame();
  56. response.getWriter().write("游戏结束<a href='"+request.getContextPath()+"/One.jsp'>再来一把</a>");
  57. return;
  58. }
  59. request.getRequestDispatcher("/One.jsp").forward(request, response);
  60. }
  61.  
  62.  
  63. protected void doPost(HttpServletRequest request, HttpServletResponse response) throwsServletException, IOException {
  64. doGet(request, response);
  65. }
  66.  
  67. }

总结:

a. 使用标签hidden可以隐式传递数据而不被用户发现 可以用来记录次数 如:


 
  1. <input type="hidden" name="times" value="<%=times %>"/>

b. Servlet是用来跳转和执行逻辑代码的,JSP是用来展示数据的 
c. request.getParameter(“Lucy”);如果参数不存在则返回null的字符串值 
d 跳转有两种方式 一个是页面跳转 地址要写项目名+jsp或者servlet 

另一个是转发共享了request的域对象,地址可以直接写jsp或者servlet 不要项目名 而且项目名和jsp或者servlet前都要加“/” 不然就是相对位置了

如:


 
  1. <form action="/zxz/zxz" method="POST">
  2. //转发
  3. request.getRequestDispatcher("/One.jsp").
  4. forward(request, response);

以上就是本文的全部内容,希望对大家的学习有所帮助,也希望大家多多支持我们。

分享到:

相关信息

  • JSP+Servlet实现文件上传到服务器功能

    本文实例为大家分享了JSP+Servlet实现文件上传到服务器功能的具体代码,供大家参考,具体内容如下...

    2020-02-03

  • JSP实现分页效果

    这篇文章主要为大家详细介绍了JSP实现分页效果,文中示例代码介绍的非常详细,具有一定的参考价值,感兴趣的小伙伴们可以参考一下...

    2020-02-03

系统教程栏目

栏目热门教程

人气教程排行

站长推荐

热门系统下载