java web学习练习 获取系统时间

<%@ page language="java" contentType="text/html; charset=UTF-8"
    pageEncoding="UTF-8"%>
<%@ page import="java.util.Date"%>
<%@ page import="java.text.SimpleDateFormat"%>
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=GB18030">
<title>一个简单的JSP页面——显示系统时间</title>
</head>
<body>
<%
	Date date = new Date(); //获取日期对象
	SimpleDateFormat df = new SimpleDateFormat("yyyy-MM-dd HH:mm:ss"); //设置日期时间格式
	String today = df.format(date); //获取当前系统日期
%>

当前时间:<%=today%>		<!-- 输出系统时间 -->
</body>
</html>

运行效果  http://115.29.139.162:8080/WebContent/001/

你可能感兴趣的:(java web学习练习 获取系统时间)