本篇內(nèi)容介紹了“編寫(xiě)Servlet方法有幾種”的有關(guān)知識(shí),在實(shí)際案例的操作過(guò)程中,不少人都會(huì)遇到這樣的困境,接下來(lái)就讓小編帶領(lǐng)大家學(xué)習(xí)一下如何處理這些情況吧!希望大家仔細(xì)閱讀,能夠?qū)W有所成!
讓客戶(hù)滿(mǎn)意是我們工作的目標(biāo),不斷超越客戶(hù)的期望值來(lái)自于我們對(duì)這個(gè)行業(yè)的熱愛(ài)。我們立志把好的技術(shù)通過(guò)有效、簡(jiǎn)單的方式提供給客戶(hù),將通過(guò)不懈努力成為客戶(hù)在信息化領(lǐng)域值得信任、有價(jià)值的長(zhǎng)期合作伙伴,公司提供的服務(wù)項(xiàng)目有:申請(qǐng)域名、網(wǎng)絡(luò)空間、營(yíng)銷(xiāo)軟件、網(wǎng)站建設(shè)、義安網(wǎng)站維護(hù)、網(wǎng)站推廣。
有誰(shuí)說(shuō)了編寫(xiě)Servlet必須繼承自HttpServlet類(lèi),必須實(shí)現(xiàn)doGet()或者doPost() ,難道實(shí)現(xiàn)Servlet接口就不行了嗎?
其實(shí)編寫(xiě)Servlet主要有三種方法,一是實(shí)現(xiàn)Servlet接口,二是繼承抽象類(lèi)GenericServlet,三是繼承HttpServlet類(lèi)。下面分別用這三種方法去實(shí)現(xiàn)Servlet:
(一)要從實(shí)現(xiàn)Servlet接口來(lái)編寫(xiě)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接口的方法編寫(xiě)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)請(qǐng)求后要做的內(nèi)容 PrintWriter out = response.getWriter(); out.println("Hello World!"); } public String getServletInfo(){ return null; } public void destroy(){ System.out.println("destory"); } }
(二)繼承抽象類(lèi)GenericServlet編寫(xiě)Serlvet,這個(gè)相對(duì)比實(shí)現(xiàn)Servlet接口要容易一點(diǎn),GenericServlet類(lèi)中只有一個(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類(lèi)編寫(xiě)Servlet應(yīng)該是最容易的,而且是最常見(jiàn)的,我們一般要編寫(xiě)Servlet直接繼承這個(gè)類(lèi)就行了,重寫(xiě)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("<html>"); out.println("<head>"); out.println("<title>HelloWorld</title>"); out.println("</head>"); out.println("<body bgcolor=\"white\">"); out.println("<hr>"); out.println("HelloWorld"); out.println("</body></html>"); } public void doPost(HttpServletRequest request, HttpServletResponse response) throws IOException, ServletException { doGet(request, response); } }
“編寫(xiě)Servlet方法有幾種”的內(nèi)容就介紹到這里了,感謝大家的閱讀。如果想了解更多行業(yè)相關(guān)的知識(shí)可以關(guān)注創(chuàng)新互聯(lián)網(wǎng)站,小編將為大家輸出更多高質(zhì)量的實(shí)用文章!
分享文章:編寫(xiě)Servlet方法有幾種
文章網(wǎng)址:http://jinyejixie.com/article34/possse.html
成都網(wǎng)站建設(shè)公司_創(chuàng)新互聯(lián),為您提供手機(jī)網(wǎng)站建設(shè)、關(guān)鍵詞優(yōu)化、企業(yè)建站、外貿(mào)建站、虛擬主機(jī)、電子商務(wù)
聲明:本網(wǎng)站發(fā)布的內(nèi)容(圖片、視頻和文字)以用戶(hù)投稿、用戶(hù)轉(zhuǎn)載內(nèi)容為主,如果涉及侵權(quán)請(qǐng)盡快告知,我們將會(huì)在第一時(shí)間刪除。文章觀點(diǎn)不代表本網(wǎng)站立場(chǎng),如需處理請(qǐng)聯(lián)系客服。電話(huà):028-86922220;郵箱:631063699@qq.com。內(nèi)容未經(jīng)允許不得轉(zhuǎn)載,或轉(zhuǎn)載時(shí)需注明來(lái)源: 創(chuàng)新互聯(lián)