zl程序教程

您现在的位置是:首页 >  系统

当前栏目

访问系统的时间

系统 时间 访问
2023-09-14 09:12:02 时间
<%@ page language="java" import="java.text.*,java.util.*" contentType="text/html; charset=utf-8"
    pageEncoding="utf-8"%>
    
    <%!
    String format(String format,Date date){
        SimpleDateFormat formater=new SimpleDateFormat(format);
        return formater.format(date);
    }
    %>
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>Insert title here</title>
</head>
<body>
您访问的时间是:
<%
Date now=new Date();
String time=format("YYYY年MM月dd日",now);
%>
<%=time %>
</body>
</html>