使用 java.util.Date:
import java.text.ParseException;
import java.text.SimpleDateFormat;
import java.util.Date;
public class DateExampleServlet extends HttpServlet {
protected void doGet(HttpServletRequest request, HttpServletResponse response)
throws IOException {
// 获取当前日期
Date currentDate = new Date();
// 格式化日期为字符串
SimpleDateFormat dateFormat = new SimpleDateFormat("yyyy-MM-dd HH:mm:ss");
String formattedDate = dateFormat.format(currentDate);
// 解析字符串为日期
try {
Date parsedDate = dateFormat.parse("2023-01-01 12:00:00");
} catch (ParseException e) {
e.printStackTrace();
}
}
}
使用 java.time 包:
import java.time.LocalDateTime;
import java.time.format.DateTimeFormatter;
public class LocalDateExampleServlet extends HttpServlet {
protected void doGet(HttpServletRequest request, HttpServletResponse response)
throws IOException {
// 获取当前日期和时间
LocalDateTime currentDateTime = LocalDateTime.now();
// 格式化日期为字符串
DateTimeFormatter formatter = DateTimeFormatter.ofPattern("yyyy-MM-dd HH:mm:ss");
String formattedDateTime = currentDateTime.format(formatter);
// 解析字符串为日期和时间
LocalDateTime parsedDateTime = LocalDateTime.parse("2023-01-01 12:00:00", formatter);
}
}
请注意:
- 在使用java.util.Date时,通常需要注意线程安全性,可以考虑使用SimpleDateFormat的替代品,如java.time包提供的DateTimeFormatter。
- 在使用java.time包时,建议使用LocalDate、LocalTime和LocalDateTime等不可变类。
- 始终考虑时区和本地化问题,尤其是在跨时区的应用中。
选择日期处理方式取决于项目的Java版本和需求。对于Java 8及更高版本,强烈建议使用java.time包,因为它提供了更强大和灵活的日期和时间处理功能。
转载请注明出处:http://www.pingtaimeng.com/article/detail/6885/Servlet