zoukankan      html  css  js  c++  java
  • 分析Hello2代码

    代码如下
    String username = request.getParameter("username"); if (username != null && username.length()> 0) { RequestDispatcher dispatcher = getServletContext().getRequestDispatcher("/response"); if (dispatcher != null) { dispatcher.include(request, response); } } out.println("</body></html>"); }

    解释:
    String username = request.getParameter("username");//以String的形式返回参数并赋值给username
    if (username != null && username.length()> 0) { //判断username是否不为null并且长度大于零
     RequestDispatcher dispatcher =
                        getServletContext().getRequestDispatcher("/response");
    //

        定义接收来自客户端的请求并将它们发送到服务器上的任何资源的对象dispatcher

       if (dispatcher != null) {
                        dispatcher.include(request, response);
                    }
    如果接收到的客户端的请求不为空时,记录保留request和response,以后不能再修改response里表示状态的信息
     
     


  • 相关阅读:
    js的包装对象
    js-原型
    js面向对象初识
    css3-3d
    用css制作三角形
    清浮动
    IE67下浮动元素margin-bottom值失效问题
    css圆角
    Use Memory Layout from Target Dialog Scatter File
    Qt QSting
  • 原文地址:https://www.cnblogs.com/hkhk/p/10590466.html
Copyright © 2011-2022 走看看