<%@ 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>

 

相关文章:

  • 2022-12-23
  • 2021-06-12
  • 2021-11-13
  • 2022-12-23
  • 2022-12-23
  • 2021-11-13
  • 2021-04-27
猜你喜欢
  • 2021-08-07
  • 2022-12-23
  • 2022-12-23
  • 2022-01-17
  • 2021-08-14
  • 2022-01-31
相关资源
相似解决方案