• JSP脚本及指令


     

     

     

     

    <%@ page import="java.util.Date" %>
    <%@ page import="java.text.SimpleDateFormat" %>
    <%@ page pageEncoding="UTF-8" buffer="16kb" %>
    <%-- 使用taglib 指令设置引入自定义标签信息 --%>
    <%@ taglib prefix="c" uri="http://java.sun.com/jstl/core_rt" %>
    <%@ page contentType="text/html;charset=UTF-8" language="java" %>
    <html>
      <head>
        <title>$Title$</title>
      </head>
      <body>
      <%@ include file="view/top.jsp" %>
      <%-- 声明变量定义方法 --%>
      <%!
        String mess = "";//
        void sayHello(String name,String sex){
          if (sex.equals("男"))
            mess = "你好!"+name+" 先生";
          else
            mess = "你好!"+name+" 女士";
        }
      %>
      <%
        sayHello("King","男");
        Date dat = new Date();
        SimpleDateFormat sim = new SimpleDateFormat();
      %>
      <%=mess%>
    
      <c:if test="${17 >=18}">
        <h2>您是成年人</h2>
      </c:if>
    
      <c:if test="${17 < 18}">
        <h2>你是未成年人</h2>
      </c:if>
    
      </body>
    </html>
    <%--
      Created by IntelliJ IDEA.
      User: zengy
      Date: 2022/1/31
      Time: 21:00
      To change this template use File | Settings | File Templates.
    --%>
    <%@ page contentType="text/html;charset=UTF-8" language="java" %>
    <html>
    <head>
        <title>pages</title>
    </head>
    <body>
        <img src="imgs/68670770_p0.jpg">
    </body>
    </html>
    <?xml version="1.0" encoding="UTF-8"?>
    <web-app xmlns="http://xmlns.jcp.org/xml/ns/javaee"
             xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
             xsi:schemaLocation="http://xmlns.jcp.org/xml/ns/javaee http://xmlns.jcp.org/xml/ns/javaee/web-app_4_0.xsd"
             version="4.0">
        <welcome-file-list>
            <welcome-file>hello.jsp</welcome-file>
        </welcome-file-list>
    </web-app>
  • 相关阅读:
    人工智能第二次作业
    人工智能第一次作业
    第二次作业
    文芳梅(130702010015)第二次作业
    文芳梅(130702010015)第一次作业
    计算机辅助教育第一次作业
    AI实验报告
    第二次作业 第二章课后
    第一次AI作业解答
    骆光玉136201010490第二次作业
  • 原文地址:https://www.cnblogs.com/zengyu1234/p/15858630.html
Copyright © 2020-2023  润新知