code001.jsp
<%@ page language="java" contentType="text/html; charset=UTF-8" pageEncoding="UTF-8"%> <%@ page import="java.util.Date" %> <%@ page import="java.text.SimpleDateFormat" %> <!DOCTYPE html> <html> <head> <meta charset="UTF-8"> <title>一个简单的JSP页面-显示系统时间</title> </head> <body> <% Date date = new Date(); SimpleDateFormat format = new SimpleDateFormat("yyyy-MM-dd HH:mm:ss.SSS"); String today = format.format(date); %> 当前时间:<%=today %> </body> </html>