资源简介
jsp界面弄的一个很简单的抽奖项目,可供大家参考参考
代码片段和文件信息
package servlet;
import java.io.IOException;
import java.util.Random;
import javax.servlet.RequestDispatcher;
import javax.servlet.ServletException;
import javax.servlet.http.HttpServlet;
import javax.servlet.http.HttpServletRequest;
import javax.servlet.http.HttpServletResponse;
public class ResultServlet extends HttpServlet {
/**
* Constructor of the object.
*/
public ResultServlet() {
super();
}
/**
* Destruction of the servlet.
*/
public void destroy() {
super.destroy(); // Just puts “destroy“ string in log
// Put your code here
}
/**
* The doGet method of the servlet.
*
* This method is called when a form has its tag value method equals to get.
*
* @param request the request send by the client to the server
* @param response the response send by the server to the client
* @throws ServletException if an error occurred
* @throws IOException if an error occurred
*/
public void doGet(HttpServletRequest request HttpServletResponse response)
throws ServletException IOException {
doPost(requestresponse);
}
/**
* The doPost method of the servlet.
*
* This method is called when a form has its tag value method equals to post.
*
* @param request the request send by the client to the server
* @param response the response send by the server to the client
* @throws ServletException if an error occurred
* @throws IOException if an error occurred
*/
public void doPost(HttpServletRequest request HttpServletResponse response)
throws ServletException IOException {
request.setCharacterEncoding(“utf-8“);
String path = “/result.jsp“;// 转发到的页面
RequestDispatcher rd = request.getRequestDispatcher(path);// 实现转发功能
String[] a={“没有中奖,谢谢光顾!““没有中奖,谢谢光顾!““没有中奖,谢谢光顾!““恭喜你中奖了,详情请登录***网站了解““没有中奖,谢谢光顾!““恭喜你中了特等奖了,详情请登录***网站了解““恭喜你中了大奖了,详情请登录***网站了解““谢谢光顾““没有中奖,谢谢光顾!““没有中奖,谢谢光顾!“};
String aa=getRandomString(a);
request.setAttribute(“result“ aa);
//request.setAttribute(“result“ “success“);// 调用request的属性函数
//request.setAttribute(“reson“ “注册成功!“);// 调用request的属性函数
rd.forward(request response);
return;
//System.out.println (getRandomString(a));
}
public static String getRandomString(String[] str){
Random rand=new Random(System.currentTimeMillis());
return str[rand.nextInt(10)];
}
/**
* Initialization of the servlet.
*
* @throws ServletException if an error occurs
*/
public void init() throws ServletException {
// Put your code here
}
}
属性 大小 日期 时间 名称
----------- --------- ---------- ----- ----
文件 1223 2010-03-08 16:27 Tests\.project
文件 2755 2010-03-08 19:38 Tests\src\servlet\ResultServlet.java
文件 2212 2010-03-08 19:38 Tests\WebRoot\WEB-INF\classes\servlet\ResultServlet.class
文件 662 2010-03-08 16:48 Tests\WebRoot\WEB-INF\web.xm
文件 39 2010-03-08 14:45 Tests\WebRoot\me
文件 1730 2010-03-08 17:12 Tests\WebRoot\index.jsp
文件 22856 2010-03-08 15:19 Tests\WebRoot\image\1.jpg
文件 14949 2010-03-08 15:18 Tests\WebRoot\image\3.jpg
文件 17200 2010-03-08 17:23 Tests\WebRoot\image\4.jpg
文件 1353 2010-03-08 18:06 Tests\WebRoot\result.jsp
文件 288 2010-03-08 14:45 Tests\.myme
文件 362 2010-03-08 15:18 Tests\.classpath
目录 0 2010-03-08 19:34 Tests\WebRoot\WEB-INF\classes\servlet
目录 0 2010-03-08 14:45 Tests\WebRoot\WEB-INF\lib
目录 0 2010-03-08 14:45 Tests\WebRoot\WEB-INF\classes
目录 0 2010-03-08 16:48 Tests\src\servlet
目录 0 2010-03-08 14:45 Tests\WebRoot\WEB-INF
目录 0 2010-03-08 14:45 Tests\WebRoot\me
目录 0 2010-03-08 15:18 Tests\WebRoot\image
目录 0 2010-03-08 14:45 Tests\src
目录 0 2010-03-08 14:45 Tests\WebRoot
目录 0 2010-03-08 14:45 Tests\.myeclipse
目录 0 2010-03-08 14:45 Tests
----------- --------- ---------- ----- ----
65629 23
- 上一篇:android wifi 热点模式使用
- 下一篇:java 网上在线报名系统
相关资源
- 简单的jsp新闻发布网站
- jsp+web+简单学生管理系统+mysql
- JSP版_成绩录入查询系统
- JSP+access网上投票系统
- 纯Jsp+oracle写的一个Student 增删改查服
- jsp+Mysql做的留言板 界面豪华 大方 美
- 编写一个JSP程序,计算整数的阶乘,
- JSP在线人数统计
- 图片上传完整实现(jspjavajs表设计)
- jsp and servlet用户登录注册界面
- 天气预报JSP代码
- 简易网登录注册功能实现JSP+Servlet
- 个人博客博客案例(jsp)
- JSP技术将EXCEL导入到MYSQL中
- jsp+oracle网上求职系统源码
- jsp人事管理系统244252
- NodeJsProject.zip
- jsp唯美登录界面,
- 一个简单的web jsp投票系统(适合初学
- 在jsp中如何用下拉菜单实现动态查询
- javaweb开发:通过对jsp和servlet的学习做
- ajax实现无刷新JSP聊天室+源代码
- jdbc 源代码 jsp+mysql
- JSP 和 JavaBean连接sql server验证登录
- 毕业论文(jspmysql)
- 用各种标签做的一个JSP分页项目
- jsp/servlet投票管理系统myeclipse 8.6.1+t
- jspsmart.jar
- jsp读取Excel中的数据,以表格形式展现
- JSPSmartUpload.zip
评论
共有 条评论