Servlet增刪改查案例經(jīng)典實現(xiàn)

Servlet增刪改查案例經(jīng)典實現(xiàn)

ID:39853243

大?。?4.00 KB

頁數(shù):10頁

時間:2019-07-13

Servlet增刪改查案例經(jīng)典實現(xiàn)_第1頁
Servlet增刪改查案例經(jīng)典實現(xiàn)_第2頁
Servlet增刪改查案例經(jīng)典實現(xiàn)_第3頁
Servlet增刪改查案例經(jīng)典實現(xiàn)_第4頁
Servlet增刪改查案例經(jīng)典實現(xiàn)_第5頁
資源描述:

《Servlet增刪改查案例經(jīng)典實現(xiàn)》由會員上傳分享,免費在線閱讀,更多相關內(nèi)容在行業(yè)資料-天天文庫。

1、AddpublicclassAddextendsHttpServlet{publicvoiddoGet(HttpServletRequestrequest,HttpServletResponseresponse)throwsServletException,IOException{//編碼問題response.setContentType("text/html;charset=GBK");//瀏覽器顯示的編碼,默認的是isoresponse.setCharacterEncoding("GBK");//瀏覽器到數(shù)據(jù)庫取數(shù)據(jù)時候使用的編碼reques

2、t.setCharacterEncoding("GBK");//瀏覽器到數(shù)據(jù)庫存入數(shù)據(jù)時候所使用的編碼方式//必須為post方式才行的//獲取所提交表單的值Stringid=request.getParameter("id");//嚴謹?shù)木幋a:if("".equals(id)

3、

4、id==null){response.sendRedirect("./Main.html");//System.out.println("zzz");return;}Stringname=request.getParameter("user");//Stringname=

5、newString(name1.getBytes(("GBK")));//"ISO-8859-1",intuserage=Integer.parseInt(request.getParameter("age"));Stringaddr=request.getParameter("address");intuserid=Integer.parseInt(id);//調(diào)用dao層的方法進行添加到數(shù)據(jù)庫的操作Personp=newPerson();p.setId(userid);p.setName(name);p.setAge(userage);p.s

6、etAddress(addr);IPersonDaoperson=newPersonDaoImpl();person.addPerson(p);//添加過后則重定向,跳向查詢?nèi)康捻撁鎟esponse.sendRedirect("/Jsp/selectAll");}//Post方法處理post的請求publicvoiddoPost(HttpServletRequestrequest,HttpServletResponseresponse)throwsServletException,IOException{doGet(request,respon

7、se);}}DeletepublicclassDeleteextendsHttpServlet{publicvoiddoGet(HttpServletRequestrequest,HttpServletResponseresponse)throwsServletException,IOException{IPersonDaoperson=newPersonDaoImpl();intid=Integer.parseInt(request.getParameter("id").trim());person.delPersonById(id);resp

8、onse.sendRedirect("/Jsp/selectAll");//重定向查詢?nèi)宽撁?/RequestDispatcherdp=request.getRequestDispatcher("/Add/selectAll");//轉(zhuǎn)發(fā)方式//dp.forward(request,response);}}publicclassDelAllextendsHttpServlet{publicvoiddoGet(HttpServletRequestrequest,HttpServletResponseresponse)throwsServletEx

9、ception,IOException{//獲取多個box的值的方法String[]s=request.getParameterValues("like");//?IPersonDaoperson=newPersonDaoImpl();//使用for循環(huán)進行刪除操作for(inti=0;i

10、d/selectAll");//跳到查詢?nèi)宽撁鎪//Post方法處理post的請求publicvoiddoPost(HttpServl

當前文檔最多預覽五頁,下載文檔查看全文

此文檔下載收益歸作者所有

當前文檔最多預覽五頁,下載文檔查看全文
溫馨提示:
1. 部分包含數(shù)學公式或PPT動畫的文件,查看預覽時可能會顯示錯亂或異常,文件下載后無此問題,請放心下載。
2. 本文檔由用戶上傳,版權歸屬用戶,天天文庫負責整理代發(fā)布。如果您對本文檔版權有爭議請及時聯(lián)系客服。
3. 下載前請仔細閱讀文檔內(nèi)容,確認文檔內(nèi)容符合您的需求后進行下載,若出現(xiàn)內(nèi)容與標題不符可向本站投訴處理。
4. 下載文檔時可能由于網(wǎng)絡波動等原因無法下載或下載錯誤,付費完成后未能成功下載的用戶請聯(lián)系客服處理。