真实的国产乱ⅩXXX66竹夫人,五月香六月婷婷激情综合,亚洲日本VA一区二区三区,亚洲精品一区二区三区麻豆

成都創(chuàng)新互聯(lián)網(wǎng)站制作重慶分公司

編寫Servlet方法有幾種

本篇內(nèi)容介紹了“編寫Servlet方法有幾種”的有關(guān)知識,在實(shí)際案例的操作過程中,不少人都會(huì)遇到這樣的困境,接下來就讓小編帶領(lǐng)大家學(xué)習(xí)一下如何處理這些情況吧!希望大家仔細(xì)閱讀,能夠?qū)W有所成!

讓客戶滿意是我們工作的目標(biāo),不斷超越客戶的期望值來自于我們對這個(gè)行業(yè)的熱愛。我們立志把好的技術(shù)通過有效、簡單的方式提供給客戶,將通過不懈努力成為客戶在信息化領(lǐng)域值得信任、有價(jià)值的長期合作伙伴,公司提供的服務(wù)項(xiàng)目有:申請域名、網(wǎng)絡(luò)空間、營銷軟件、網(wǎng)站建設(shè)、義安網(wǎng)站維護(hù)、網(wǎng)站推廣。

有誰說了編寫Servlet必須繼承自HttpServlet類,必須實(shí)現(xiàn)doGet()或者doPost() ,難道實(shí)現(xiàn)Servlet接口就不行了嗎?

其實(shí)編寫Servlet主要有三種方法,一是實(shí)現(xiàn)Servlet接口,二是繼承抽象類GenericServlet,三是繼承HttpServlet類。下面分別用這三種方法去實(shí)現(xiàn)Servlet:

(一)要從實(shí)現(xiàn)Servlet接口來編寫Servlet是比較麻煩的,因?yàn)楸仨殞?shí)現(xiàn)Servlet接口中的所有方法,Servlet接口主要定義了五個(gè)方法,它們分別為:

(1)void init(ServletConfig config) throws ServletException
(2)ServletConfig getServletConfig()
(3)void service(ServletRequest req,ervletResponse res) throws ServletException,IOException
(4)String getServletInfo()
(5)void destroy()

下面用實(shí)現(xiàn)Servlet接口的方法編寫Servlet:

import javax.servlet.*;  import java.io.*;  public class TestServlet implements Servlet{      public void init(ServletConfig config) throws ServletException{          System.out.println("init");          }      public ServletConfig getServletConfig(){          reture null;          }      public void service(ServletRequest req,ServletResponse res)           throws ServletException,IOException{              //這里可以實(shí)現(xiàn)請求后要做的內(nèi)容              PrintWriter out = response.getWriter();        out.println("Hello World!");               }      public String getServletInfo(){          return null;          }      public void destroy(){          System.out.println("destory");          }      }

(二)繼承抽象類GenericServlet編寫Serlvet,這個(gè)相對比實(shí)現(xiàn)Servlet接口要容易一點(diǎn),GenericServlet類中只有一個(gè)抽象方法,即service(ServletRequest req, ServletResponse res),只要實(shí)現(xiàn)這個(gè)方法就行了,下面看例子:

import javax.servlet.*;  import java.io.IOException;   public TestGenericServlet extends GenericServlet{      public abstract void service(ServletRequest req,ServletResponse res)                        throws ServletException,IOException{       PrintWriter out = response.getWriter();       out.println("Hello World!");                            }  }

(3)繼承HttpServlet類編寫Servlet應(yīng)該是最容易的,而且是最常見的,我們一般要編寫Servlet直接繼承這個(gè)類就行了,重寫doGet()或者doPost()方法即可,下面看例子:

import javax.servlet.http.*;  import javax.servlet.*;  import java.io.*;   public TestHttpServlet extends HttpServlet{      public void doGet(HttpServletRequest request, HttpServletResponse response)          throws IOException, ServletException {    response.setContentType("text/html;charset=gb2312");    PrintWriter out = response.getWriter();     out.println("");    out.println("");    out.println("HelloWorld");    out.println("");    out.println("");    out.println("
");    out.println("HelloWorld");    out.println("");   }    public void doPost(HttpServletRequest request, HttpServletResponse response)     throws IOException, ServletException {    doGet(request, response);   }   }

“編寫Servlet方法有幾種”的內(nèi)容就介紹到這里了,感謝大家的閱讀。如果想了解更多行業(yè)相關(guān)的知識可以關(guān)注創(chuàng)新互聯(lián)網(wǎng)站,小編將為大家輸出更多高質(zhì)量的實(shí)用文章!


分享題目:編寫Servlet方法有幾種
文章URL:http://weahome.cn/article/possse.html

其他資訊

在線咨詢

微信咨詢

電話咨詢

028-86922220(工作日)

18980820575(7×24)

提交需求

返回頂部