版权声明 本文原创作者:谷哥的小弟作者博客地址:Http://blog.csdn.net/lfdfhl 背景概述 Mysql数据库中某字段为datetime类型;图示如下: 在ORM处理时,在Java中可使用LocalDateTime
在ORM处理时,在Java中可使用LocalDateTime接收datetime类型的数据。
import java.time.LocalDateTime;import java.time.format.DateTimeFormatter;public class Test { public static void main(String[] args) { // 日期格式 String format = "yyyy-MM-dd HH:mm:ss"; // 获取表示当前时间的LocalDateTime LocalDateTime localDateTime = LocalDateTime.now(); DateTimeFormatter dateTimeFormatter = DateTimeFormatter.ofPattern(format); // 将LocalDateTime对象转成指定格式的字符串 String time = localDateTime.format(dateTimeFormatter); System.out.println(time); // 将字符串转成LocalDateTime对象 LocalDateTime parse = LocalDateTime.parse(time, dateTimeFormatter); System.out.println(parse); }}
测试结果如下:
2022-10-30 21:28:34
2022-10-30T21:28:34
--结束END--
本文标题: MySQL数据库datetime与LocalDateTime的映射与处理
本文链接: https://lsjlt.com/news/377997.html(转载时请注明来源链接)
有问题或投稿请发送至: 邮箱/279061341@qq.com QQ/279061341
2024-10-23
2024-10-22
2024-10-22
2024-10-22
2024-10-22
2024-10-22
2024-10-22
2024-10-22
2024-10-22
2024-10-22
回答
回答
回答
回答
回答
回答
回答
回答
回答
回答
0