美文网首页
(3) page 指令和 include 指令使用

(3) page 指令和 include 指令使用

作者: 笑笑学生 | 来源:发表于2016-09-09 23:09 被阅读4次

showdate.jsp

<%@ page language="java" import="java.util.*" pageEncoding="UTF-8"%>
<%@ page import="java.text.*" %>
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<html>
  <head>
    <title>My JSP 'date.jsp' starting page</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="styles.css">
    -->
  </head>
  
  <body>
  <%
    Date date = new Date();
    SimpleDateFormat sdf = new SimpleDateFormat("yyyy-MM-dd");
  %>
    当前时间:<%= sdf.format(date) %><br>
  </body>
</html>

commentdemo.jsp

<%@ page language="java" import="java.util.*" pageEncoding="UTF-8"%>
<%! int a =0; %>
<%! String strTmp=""; %>
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<html>
  <head>
    <title>My JSP 'date.jsp' starting page</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="styles.css">
    -->
  </head>
  <body>
  <%
    a=13;
    out.print(a);
  %>
    This is my JSP page. <br>
    <%@ include file="showdate.jsp" %>
  </body>
</html>

相关文章

网友评论

      本文标题:(3) page 指令和 include 指令使用

      本文链接:https://www.haomeiwen.com/subject/ufhyettx.html