• 大小: 44KB
    文件类型: .rar
    金币: 2
    下载: 1 次
    发布日期: 2021-06-09
  • 语言: Java
  • 标签: JSP+MySQL  

资源简介

很好的JSP+MYSQL源代码,具有很好的参考价值

资源截图

代码片段和文件信息

package votebean;

import java.io.IOException;
import java.io.PrintWriter;
import java.util.*;
import javax.servlet.ServletException;
import javax.servlet.http.HttpServlet;
import javax.servlet.http.HttpServletRequest;
import javax.servlet.http.HttpServletResponse;

/**
 * @author xiaoq
 *
 */
public class AddVoteServlet extends HttpServlet {

/**
 * Constructor of the object.
 */
public AddVoteServlet() {
super();
}

/**
 * Destruction of the servlet. 

 */
public void destroy() {
super.destroy(); // Just puts “destroy“ string in log
// Put your code here
}

/**
 * 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 {

response.setContentType(“text/html;charset=GBK“);
PrintWriter out = response.getWriter();
out.println(““);
out.println(“  tle>add votetle>“);
out.println(“  “);
String title=request.getParameter(“title“);
String stile=request.getParameter(“stile“);
String startTime=request.getParameter(“startyear“)+“-“+request.getParameter(“startmonth“)+“-“+
request.getParameter(“startday“);
String endTime=request.getParameter(“endyear“)+“-“+request.getParameter(“endmonth“)+“-“+
request.getParameter(“endday“);
String active=request.getParameter(“active“);
int newActive=Integer.parseInt(active);
/**test
out.println(title+““+stile+““+endTime+““+startTime+““+newActive+““);
*/
Questions question=new Questions();
question.settitle(title);
question.setstyle(stile);
question.setStrStartime(startTime);
question.setStrEndtime(endTime);
question.setActive(newActive);
int n=Integer.parseInt(request.getParameter(“n“));
Collection items=new ArrayList();
Item item=null;
for(int i=1;i<=n;i++){
item=new Item();
item.setOptions(request.getParameter(“option“+i));
items.add(item);
item=null;
}
VoteMgr mgr=new VoteMgr();
question.setItem(items);
int i=mgr.addVote(question);
if(i==1){
out.print(“add successed“);
}else{
out.print(“add failedplease add again“);
}
out.println(“继续添加|“);
out.println(“浏览投票项目“);
out.println(“  “);
out.println(““);
out.flush();
out.close();
}

/**
 * Initialization of the servlet. 

 *
 * @throws ServletException if an error occurs
 */
public void init() throws ServletException {
// Put your code here
}

}

 属性            大小     日期    时间   名称
----------- ---------  ---------- -----  ----

     文件        362  2011-06-20 13:12  jsp网上投票系统\.classpath

     文件        336  2011-06-20 13:12  jsp网上投票系统\.mymetadata

     文件       1294  2011-06-20 13:12  jsp网上投票系统\.project

     文件        330  2011-06-20 13:12  jsp网上投票系统\.settings\org.eclipse.jdt.core.prefs

     文件       2945  2008-12-17 02:47  jsp网上投票系统\src\votebean\AddVoteServlet.java

     文件       2155  2008-12-18 17:22  jsp网上投票系统\src\votebean\BrowseVoteServlet.java

     文件       1425  2008-12-17 22:43  jsp网上投票系统\src\votebean\DeleteVoteServlet.java

     文件       2573  2008-12-17 22:40  jsp网上投票系统\src\votebean\EditVoteServlet.java

     文件        596  2008-12-10 21:26  jsp网上投票系统\src\votebean\Item.java

     文件        742  2008-12-13 21:59  jsp网上投票系统\src\votebean\MysqlDAO.java

     文件       1932  2008-12-16 22:18  jsp网上投票系统\src\votebean\MysqlTest.java

     文件       2062  2008-12-16 19:08  jsp网上投票系统\src\votebean\Questions.java

     文件       3124  2008-12-18 17:16  jsp网上投票系统\src\votebean\ServletLogin.java

     文件       1999  2008-12-18 13:39  jsp网上投票系统\src\votebean\ShowVoteServlet.java

     文件       1728  2008-12-18 14:19  jsp网上投票系统\src\votebean\UpdateVoteServlet.java

     文件      10257  2008-12-18 13:58  jsp网上投票系统\src\votebean\VoteMgr.java

     文件       4396  2008-12-16 18:31  jsp网上投票系统\WebRoot\admin\addvote.jsp

     文件       4425  2008-12-18 13:45  jsp网上投票系统\WebRoot\admin\browse.jsp

     文件       5532  2008-12-17 22:07  jsp网上投票系统\WebRoot\admin\editVote.jsp

     文件       1434  2008-12-14 14:04  jsp网上投票系统\WebRoot\admin\error.jsp

     文件        863  2008-12-16 16:31  jsp网上投票系统\WebRoot\admin\index.jsp

     文件       2418  2008-12-14 12:56  jsp网上投票系统\WebRoot\admin\login.jsp

     文件       3280  2008-12-18 14:10  jsp网上投票系统\WebRoot\admin\showvote.jsp

     文件       2517  2008-12-18 12:50  jsp网上投票系统\WebRoot\admin\vote.jsp

     文件        829  2008-12-18 17:15  jsp网上投票系统\WebRoot\index.jsp

     文件         39  2008-12-13 21:56  jsp网上投票系统\WebRoot\meta-INF\MANIFEST.MF

     文件       3288  2011-06-20 13:12  jsp网上投票系统\WebRoot\WEB-INF\classes\votebean\AddVoteServlet.class

     文件       2258  2011-06-20 13:12  jsp网上投票系统\WebRoot\WEB-INF\classes\votebean\BrowseVoteServlet.class

     文件       1315  2011-06-20 13:12  jsp网上投票系统\WebRoot\WEB-INF\classes\votebean\DeleteVoteServlet.class

     文件       3111  2011-06-20 13:12  jsp网上投票系统\WebRoot\WEB-INF\classes\votebean\EditVoteServlet.class

............此处省略24个文件信息

评论

共有 条评论