JSP實現(xiàn)百萬富翁猜數(shù)字游戲
本文實例為大家分享了jsp實現(xiàn)百萬富翁猜數(shù)字游戲的具體代碼,供大家參考,具體內(nèi)容如下
設(shè)計一個web app,每次產(chǎn)生一個30以內(nèi)的數(shù)字,給5次機(jī)會讓客戶猜測這個數(shù)字:
1)如果客戶猜的數(shù)字比產(chǎn)生的數(shù)字值大,則提示“大了”。
2)如果客戶猜的數(shù)字比產(chǎn)生的數(shù)字值小,則提示“小點”
猜對了就過關(guān),猜錯game over,給玩家重玩的機(jī)會。
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ī)會!"); } %> <br/> <form action="/zxz/zxz" method="post"> 請輸入你的數(shù)(20以下):<input type="text" name="lucy" /><br/> <% if(times!=null){ %> <input type="hidden" name="times" value="<%=times %>"/> <% } %> <input type="submit" value="競猜" /> </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'>再來一把</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) 可以用來記錄次數(shù) 如:
<input type="hidden" name="times" value="<%=times %>"/>
b. servlet是用來跳轉(zhuǎn)和執(zhí)行邏輯代碼的,jsp是用來展示數(shù)據(jù)的
c. request.getparameter(“l(fā)ucy”);如果參數(shù)不存在則返回null的字符串值
d 跳轉(zhuǎn)有兩種方式 一個是頁面跳轉(zhuǎn) 地址要寫項目名+jsp或者servlet
另一個是轉(zhuǎn)發(fā)共享了request的域?qū)ο?/span>,地址可以直接寫jsp或者servlet 不要項目名 而且項目名和jsp或者servlet前都要加“/” 不然就是相對位置了
如:
<form action="/zxz/zxz" method="post"> //轉(zhuǎn)發(fā) request.getrequestdispatcher("/one.jsp"). forward(request, response);
以上就是本文的全部內(nèi)容,希望對大家的學(xué)習(xí)有所幫助,也希望大家多多支持碩編程。
相關(guān)文章
- jsp+servlet實現(xiàn)文件上傳與下載功能
- EJB3.0部署消息驅(qū)動Bean拋javax.naming.NameNotFoundException異常
- 在JSP中使用formatNumber控制要顯示的小數(shù)位數(shù)方法
- 秒殺系統(tǒng)Web層設(shè)計的實現(xiàn)方法
- 將properties文件的配置設(shè)置為整個Web應(yīng)用的全局變量實現(xiàn)方法
- JSP使用過濾器防止Xss漏洞
- 在JSP頁面中動態(tài)生成圖片驗證碼的方法實例
- 詳解JSP 內(nèi)置對象request常見用法
- 使用IDEA編寫jsp時EL表達(dá)式不起作用的問題及解決方法
- jsp實現(xiàn)局部刷新頁面、異步加載頁面的方法
- Jsp中request的3個基礎(chǔ)實踐
- JavaServlet的文件上傳和下載實現(xiàn)方法
- JSP頁面的靜態(tài)包含和動態(tài)包含使用方法