code010.jsp
1<%@ page language="java" contentType="text/html; charset=UTF-8" 2 pageEncoding="UTF-8"%> 3<%@ page import="java.util.Date" %> 4<%@ page import="java.text.SimpleDateFormat" %> 5<!DOCTYPE html> 6<html> 7<head> 8<meta charset="UTF-8"> 9<title>练习</title> 10</head> 11<body> 12<% 13 Date date = new Date(); 14 SimpleDateFormat format = new SimpleDateFormat("yyyy年MM月dd日 HH时:mm分:ss秒"); 15 String today = format.format(date); 16 17%> 18 19<p><%= today %><p> 20</body> 21</html>