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() {
        }
    }

  • 相关阅读:
    net异步编程
    二维码的生成细节和原理
    4605 Magic Ball Game
    (Java实现) 子集和问题
    (Java实现) 组合的输出
    (Java实现) 自然数的拆分
    (Java实现) 装载问题
    (Java实现) 整数区间
    (Java实现) 最佳调度问题
    (Java实现) 最佳调度问题
  • 原文地址:https://www.cnblogs.com/20000ding/p/5463266.html
Copyright © 2011-2022 走看看