第二次作业

1.request
<html>
  <head>
    <title>孟红旭</title>
  </head>
  <body>
  <form action="index1.jsp" method="post">
    username:<input  type="text" name="user"/><br/>
    password:<input  type="password" name="pwd"/><br/>
    <input type="checkbox" name="likes" value="羽毛球">羽毛球
    <input type="checkbox" name="likes" value="摄影">摄影
    <input type="checkbox" name="likes" value="音乐">音乐
    <br/>
    <input type="submit" name="登陆"/>
  </form>

  </body>
</html>

在这里插入图片描述

2.response
<%@ page contentType="text/html;charset=UTF-8" language="java" %>
<html>
<head>
    <title>孟红旭</title>
</head>
<body>
<%
    //获取请求数据
    //设置请求方式的编码
    request.setCharacterEncoding("UTF-8");
    String name = request.getParameter("user");
    String pwd = request.getParameter("pwd");
    System.out.println(name+","+pwd);

    if("meng".equals(name) && "101016".equals(pwd)) { out.println("登陆成功");
        request.setAttribute("age", "22岁");
        request.getRequestDispatcher("response.jsp").forward(request, response);

    }else{
        //out.println("errors");
        response.setCharacterEncoding("UTF-8"); //设置响应的编码
        // 设置响应内容的类型
        response.setContentType("textml;charset=UTF-8");
        response.sendRedirect("response.jsp");
    }
%>


</body>
</html>

<html>
<head>
    <title>孟红旭</title>
</head>
<body>
不好意思,登陆失败

</body>
</html>


在这里插入图片描述

3.out
<%@ page contentType="text/html;charset=UTF-8" language="java" %>
<html>
<head>
    <title>孟红旭</title>
</head>
<body>
<%
    out.print("你好whd");
    // out.clearBuffer(); // 将缓冲区的数据清空
    out.flush(); // 先显示数据在清空缓存
    out.println("缓冲区空间:" + out.getBufferSize());
    out.print("剩余空间:" + out.getRemaining());
    out.print("AutoFlush状态:" + out.isAutoFlush());
    out.close();

%>

</body>
</html>

在这里插入图片描述

4.session
<%@ page language="java" import="java.util.*" pageEncoding="gbk"%>
<%
    String path = request.getContextPath();
    String basePath = request.getScheme()+"://"+request.getServerName()+":"+request.getServerPort()+path+"/";
%>
<html>
<head>
    <base href="<%=basePath%>">

    <title>孟红旭</title>
    <meta http-equiv="pragma" content="no-cache">
    <meta http-equiv="cache-control" content="no-cache">
    <meta http-equiv="expires" content="0">
    <meta http-equiv="keywords" content="keyword1,keyword2,keyword3">
    <meta http-equiv="description" content="This is my page">

    <link rel="stylesheet" type="text/css" href="css/style.css">

</head>

<body>
<form id="form1" name="form1" method="post" action="session2.jsp">
    <div align="center">
        <table width="40%" border="0">
            <tr>
                <td width="36%"><div align="center">您的名字是:</div></td>
                <td width="64%">
                    <label>
                        <div align="center">
                            <input type="text" name="name" />
                        </div>
                    </label>
                </td>
            </tr>
            <tr>
                <td colspan="2">
                    <label>
                        <div align="center">
                            <input type="submit" name="Submit" value="提交" />
                        </div>
                    </label>
                </td>
            </tr>
        </table>
    </div>
</form>
</body>
</html>

在这里插入图片描述

5.pageContext
%@ page contentType="text/html;charset=UTF-8" language="java" %>
<html>
  <head>
    <title>孟红旭</title>
  </head>
  <body>
  <form action="<%=request.getContextPath()%>/session.jsp" method="post">
    username:<input  type="text" name="user"/><br/>
    password:<input  type="password" name="pwd"/><br/>
    <input type="checkbox" name="likes" value="羽毛球">羽毛球
    <input type="checkbox" name="likes" value="摄影">摄影
    <input type="checkbox" name="likes" value="音乐">音乐
    <br/>
    <input type="submit" name="登陆"/>
  </form>
  <h2>pageContext对象</h2>
       <%
        //通过PageContext上下文对象获取当前页面的其他内置对象
        pageContext.getRequest();
        pageContext.getResponse();
        pageContext.getSession();
        pageContext.getOut();
        String path = request.getContextPath();
        out.println("当前上下文的绝对路径:"+path);
        %>
  </body>
</html>

在这里插入图片描述

6.application
<%@ page contentType="text/html;charset=UTF-8" language="java" %>
<html>
<head>
    <title>孟红旭</title>
</head>
<body>
<body>
<%
    Object obj=application.getAttribute("counter");
    if (obj==null){
        application.setAttribute("counter",new Integer(1));
        out.println("该页面被访问了1次<br/>");
    }else {
        int countValue=new Integer(obj.toString());
        countValue++;
        out.println("该页面被访问了"+countValue+"次<br/>");
        application.setAttribute("counter",countValue);//java会自动装箱

    }
%>
</body>
</body>
</html>

在这里插入图片描述

7.page
<%@ page contentType="text/html;charset=UTF-8" language="java" %>
<html>
<head>
    <title>孟红旭</title>
</head>
<body>
<%!  Object object;  //声明一个object型变量  %>
<ul>
    <li>getclass()方法的返回值:<%=page.getClass()%></>li>
    <li>hashcode()方法的返回值:<%=page.hashCode()%></>li>
    <li>tostring()方法的返回值:<%=page.toString()%></>li>
    <li>与object对象比较的返回值:<%=page.equals(object)%></>li>
    <li>this对象比较的返回值:<%=page.equals(this)%></>li>
</ul>
</body>
</html>

在这里插入图片描述

8.confit
<%@ page language="java" import="java.util.*" pageEncoding="UTF-8"%>
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<html>
<head>
    <title>孟红旭</title>
</head>

<body>
<%
    String url = config.getInitParameter("url");
    String str = config.toString();
    out.print("page对象的initParameter方法:"+url+"</br>");
    out.print("page对象的toString方法:"+str);
%>
</body>
</html>

在这里插入图片描述

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 1
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论 1
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值