JSP實(shí)現(xiàn)百萬(wàn)富翁猜數(shù)字游戲
本文實(shí)例為大家分享了JSP實(shí)現(xiàn)百萬(wàn)富翁猜數(shù)字游戲的具體代碼,供大家參考,具體內(nèi)容如下
設(shè)計(jì)一個(gè)web app,每次產(chǎn)生一個(gè)30以內(nèi)的數(shù)字,給5次機(jī)會(huì)讓客戶猜測(cè)這個(gè)數(shù)字:
1)如果客戶猜的數(shù)字比產(chǎn)生的數(shù)字值大,則提示“大了”。
2)如果客戶猜的數(shù)字比產(chǎn)生的數(shù)字值小,則提示“小點(diǎn)”
猜對(duì)了就過(guò)關(guān),猜錯(cuò)Game Over,給玩家重玩的機(jī)會(huì)。
JSP代碼:
<%@ page language="java" contentType="text/html; charset=UTF-8"
pageEncoding="UTF-8"%>
<!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=UTF-8">
<title>Insert title here</title>
</head>
<body>
<%
String result=(String)request.getAttribute("result");
if(result!=null){
out.write("<font color='red'>"+result+"'</font>");
}
%>
<%
Integer times=(Integer)request.getAttribute("times");
if(times!=null){
out.write("你還有"+(5-times)+"次機(jī)會(huì)!");
}
%>
<br/>
<form action="/zxz/zxz" method="POST">
請(qǐng)輸入你的數(shù)(20以下):<input type="text" name="Lucy" /><br/>
<%
if(times!=null){
%>
<input type="hidden" name="times" value="<%=times %>"/>
<%
}
%>
<input type="submit" value="競(jìng)猜" />
</form>
</body>
</html>
Servlet代碼:
package hah;
import java.io.IOException;
import java.util.Random;
import javax.servlet.ServletException;
import javax.servlet.annotation.WebServlet;
import javax.servlet.http.HttpServlet;
import javax.servlet.http.HttpServletRequest;
import javax.servlet.http.HttpServletResponse;
/**
* Servlet implementation class zxz
*/
@WebServlet("/zxz")
public class zxz extends HttpServlet {
private static final long serialVersionUID = 1L;
int answer;
public void newGame() {
Random random=new Random();
answer=random.nextInt(20);
}
public zxz() {
newGame();
}
protected void doGet(HttpServletRequest request, HttpServletResponse response) throws ServletException, IOException {
response.setContentType("text/html;charset=utf-8");
String lucyStr=request.getParameter("Lucy");
Integer lucyNb=null;
System.out.println("答案:"+answer);
if(!lucyStr.equals("")) {
lucyNb=Integer.parseInt(lucyStr);
}
Integer times=1;
String timeStr=request.getParameter("times");
if(timeStr!=null&&!timeStr.equals("")) {
times=Integer.parseInt(timeStr)+1;
}
if(times<5) {
String result="";
if(lucyNb>answer) {
result="大了";
}else if(lucyNb<answer) {
result="小了";
}else if(lucyNb==answer) {
result="中了";
times=null;
}
request.setAttribute("times", times);
request.setAttribute("result", result);
}else {
newGame();
response.getWriter().write("游戲結(jié)束<a href='"+request.getContextPath()+"/One.jsp'>再來(lái)一把</a>");
return;
}
request.getRequestDispatcher("/One.jsp").forward(request, response);
}
protected void doPost(HttpServletRequest request, HttpServletResponse response) throws ServletException, IOException {
doGet(request, response);
}
}
總結(jié):
a. 使用標(biāo)簽hidden可以隱式傳遞數(shù)據(jù)而不被用戶發(fā)現(xiàn) 可以用來(lái)記錄次數(shù) 如:
<input type="hidden" name="times" value="<%=times %>"/>
b. Servlet是用來(lái)跳轉(zhuǎn)和執(zhí)行邏輯代碼的,JSP是用來(lái)展示數(shù)據(jù)的
c. request.getParameter(“Lucy”);如果參數(shù)不存在則返回null的字符串值
d 跳轉(zhuǎn)有兩種方式 一個(gè)是頁(yè)面跳轉(zhuǎn) 地址要寫項(xiàng)目名+jsp或者servlet
另一個(gè)是轉(zhuǎn)發(fā)共享了request的域?qū)ο?/strong>,地址可以直接寫jsp或者servlet 不要項(xiàng)目名 而且項(xiàng)目名和jsp或者servlet前都要加“/” 不然就是相對(duì)位置了
如:
<form action="/zxz/zxz" method="POST">
//轉(zhuǎn)發(fā)
request.getRequestDispatcher("/One.jsp").
forward(request, response);
以上就是本文的全部?jī)?nèi)容,希望對(duì)大家的學(xué)習(xí)有所幫助,也希望大家多多支持腳本之家。
- 基于JavaScript實(shí)現(xiàn)猜數(shù)字游戲代碼實(shí)例
- JS猜數(shù)字游戲?qū)嵗v解
- JavaScript實(shí)現(xiàn)猜數(shù)字游戲
- JS實(shí)現(xiàn)網(wǎng)頁(yè)端猜數(shù)字小游戲
- jsp+servlet實(shí)現(xiàn)猜數(shù)字游戲
- AngularJS實(shí)現(xiàn)的生成隨機(jī)數(shù)與猜數(shù)字大小功能示例
- angularjs實(shí)現(xiàn)猜數(shù)字大小功能
- js實(shí)現(xiàn)一個(gè)猜數(shù)字游戲
- js猜數(shù)字小游戲的簡(jiǎn)單實(shí)現(xiàn)代碼
- 純JavaScript實(shí)現(xiàn)猜數(shù)字游戲
相關(guān)文章
Servlet實(shí)現(xiàn)文件上傳的三種方法總結(jié)
這篇文章主要介紹了Servlet實(shí)現(xiàn)文件上傳的三種方法總結(jié)的相關(guān)資料,這里提供三種實(shí)例,幫助大家理解這部分內(nèi)容,需要的朋友可以參考下2017-08-08
JavaScript實(shí)現(xiàn)圖片倒影效果 - reflex.js
本篇文章主要介紹了JavaScript實(shí)現(xiàn)圖片倒影效果,在實(shí)際中很實(shí)用,有需要的可以了解一下。2016-10-10
AJAX 自學(xué)練習(xí) 無(wú)刷新提交并修改數(shù)據(jù)庫(kù)數(shù)據(jù)并顯示
對(duì)應(yīng)在數(shù)據(jù)庫(kù)中表格 rocars表的msg_id,ccrn兩個(gè)字段?,F(xiàn)在要實(shí)現(xiàn)在界面上修改ccrn的值,ajax提交到response.jsp頁(yè)面,并調(diào)用RocarsEntiy.updateCcrn方法更新對(duì)應(yīng)的ccrn,最后無(wú)刷新顯示2009-09-09
JSP application(return String)用法詳例
JSP中application(return String)用法詳例,需要用的朋友可以參考下代碼。2009-10-10

