0

尝试编译程序时,我在 servlet 类中遇到编译错误。

代码:

import javax.servlet.*;   
import java.io.*;  
public class Servlet1 extends GenericServlet  
{   
     pubilc void service(ServletRequest req,ServletResponse res)throws ServletException,IOException  
 {  
  PrintWriter out= res.getWriter();   
  out.println("<html>");  
  out.println("<body bgcolor=pink>");  
  out.println("<h1> hello client <h1>");  
  out.println("</body>");  
  out.println("</html>");`  
 }  
}

错误:

<identifier> excepted  
     public void service (ServletRequereq, ServletRespons res) throws ServletException,IOException
invalid method declaration; return type required 
    public void service(ServletRequereq, ServletResponse res)throws ServletException,IOException 
4

1 回答 1

3

小错字:pubilc应该是public

于 2013-10-23T20:03:53.597 回答