zoukankan      html  css  js  c++  java
  • servlet跳转jsp

    ackage com.monkey.servlet;

    import javax.servlet.*;
    import javax.servlet.http.*;
    import java.io.*;
    import java.util.*;

    public class mainServlet extends HttpServlet {
        private static final String CONTENT_TYPE = "text/html; charset=GB2312";

        //Initialize global variables
        public void init() throws ServletException {
        }

        //Process the HTTP Get request
        public void doGet(HttpServletRequest request, HttpServletResponse response) throws
                ServletException, IOException {
            RequestDispatcher rd = request.getRequestDispatcher("hello.jsp");
            String name = "tom";
            request.setAttribute("id",name);//存值
            rd.forward(request,response);
        }

        //Process the HTTP Post request
        public void doPost(HttpServletRequest request, HttpServletResponse response) throws
                ServletException, IOException {
            doGet(request, response);
        }

        //Clean up resources
        public void destroy() {
        }
    }

  • 相关阅读:
    横竖屏
    iOS/Android·全球
    POKEMON GO(口袋妖怪)一起玩
    自定义宏
    设置button图片和文字
    iOS10 降级版本到9.几
    1.安装Loucust
    python小程序打包
    Jmeter GIS调用-->参数化+正则表达式提取器+后置处理器+逻辑控制器
    装PIL库
  • 原文地址:https://www.cnblogs.com/20000ding/p/5463266.html
Copyright © 2011-2022 走看看