1. 显示当前日期:
<%@ page import="java.util.Date" %>
<%@ page import="java.text.SimpleDateFormat" %>
<%@ page contentType="text/html;charset=UTF-8" language="java" %>
<html>
<head>
<title>当前日期</title>
</head>
<body>
<%
// 获取当前日期
Date currentDate = new Date();
// 格式化日期
SimpleDateFormat dateFormat = new SimpleDateFormat("yyyy-MM-dd HH:mm:ss");
String formattedDate = dateFormat.format(currentDate);
%>
<p>当前日期是:<%= formattedDate %></p>
</body>
</html>
2. 解析日期字符串:
<%@ page import="java.text.SimpleDateFormat" %>
<%@ page import="java.util.Date" %>
<%@ page contentType="text/html;charset=UTF-8" language="java" %>
<html>
<head>
<title>解析日期字符串</title>
</head>
<body>
<%
// 要解析的日期字符串
String dateString = "2023-01-01";
// 格式化器
SimpleDateFormat dateFormat = new SimpleDateFormat("yyyy-MM-dd");
// 解析日期字符串
Date parsedDate = dateFormat.parse(dateString);
// 格式化日期
String formattedDate = dateFormat.format(parsedDate);
%>
<p>解析的日期是:<%= formattedDate %></p>
</body>
</html>
这两个例子演示了如何在JSP中使用SimpleDateFormat类来格式化和解析日期。请注意,这些示例仅供参考,具体的日期处理需求可能需要根据你的应用程序的具体情况进行调整。
转载请注明出处:http://www.pingtaimeng.com/article/detail/13676/JSP