我是靠谱客的博主 苗条美女,最近开发中收集的这篇文章主要介绍创建HttpServlet的基本步骤,觉得挺不错的,现在分享给大家,希望可以做个参考。

概述

创建HttpServlet的基本步骤

 

A.导入包:
    import java.io.*;
    import javax.servlet.*;
    import javax.servlet.http.*;

B.继承HttpServlet类:
  public class ××× extends HttpServlet

C.覆盖doPost()、doGet()方法:
    public void doPost(HttpServletRequest request,HttpServletResponse response)
            throws IOException,ServletException{…}
    public void doGet(HttpServletRequest request,HttpServletResponse response)
            throws IOException,ServletException{…}

D.获取请求参数:
    String param1 = request.getParameter();

E.创建输出对象:
    PrintWriter out = response.getWriter();

F.设置响应类型:
    response.setContentType();

G.输出响应内容:
  out.println();
来自:http://blog.csdn.net/pengpenglin

最后

以上就是苗条美女为你收集整理的创建HttpServlet的基本步骤的全部内容,希望文章能够帮你解决创建HttpServlet的基本步骤所遇到的程序开发问题。

如果觉得靠谱客网站的内容还不错,欢迎将靠谱客网站推荐给程序员好友。

本图文内容来源于网友提供,作为学习参考使用,或来自网络收集整理,版权属于原作者所有。
点赞(49)

评论列表共有 0 条评论

立即
投稿
返回
顶部