首页 诗词 字典 板报 句子 名言 友答 励志 学校 网站地图
当前位置: 首页 > 教程频道 > JAVA > Java Web开发 >

servlet入门有关问题,超级简单

2012-03-15 
servlet入门问题,超级简单!下面是一段最简单的servlet结构,俺是刚刚接触,怎么具体内容要写在异常里呀?impo

servlet入门问题,超级简单!
下面是一段最简单的servlet结构,俺是刚刚接触,怎么具体内容要写在异常里呀?

import   java.io.*;
import   javax.servlet.*;
import   javax.servlet.http.*;
public   class   ServletTemplate   extends   HttpServlet   {
public   void   doGet(HttpServletRequest   request,
HttpServletResponse   response)
throws   ServletException,   IOException   {
//   Use   "request "   to   read   incoming   HTTP   headers
//   (e.g.,   cookies)   and   query   data   from   HTML   forms.
//   Use   "response "   to   specify   the   HTTP   response   status
//   code   and   headers   (e.g.,   the   content   type,   cookies).
PrintWriter   out   =   response.getWriter();
//   Use   "out "   to   send   content   to   browser.
}
}

[解决办法]
楼主什么意思?
[解决办法]
throws ServletException, IOException 并不代码是写在异常里。

而是表示doGet方法有可能会抛出ServletException、IOException 2种异常

热点排行