import java.io.*;
import javax.servlet.*;
import javax.servlet.http.*;
public class Morning extends HttpServlet{
public void service(HttpServletRequest req,HttpServletResponse res) throws ServletException,IOException{
res.setContentType("text/html;charset=Big5");
PrintWriter pw=res.getWriter();
pw.println("<html>");
pw.println("<head>");
pw.println("<title>Morning</title>");
pw.println("</head>");
pw.println("<body>");
pw.println("<h1>abc你的程序成功,祝贺你!哈哈....<br>");
pw.println("OK!!</h1>");
pw.println("</body>");
pw.println("</html>");
}
public String getServletInfo(){
return "这是一个servlet程序";
}
}