Mysql数据库中的时间精确到秒,取出数据时想要精确到日
发布网友
发布时间:2022-04-23 13:06
我来回答
共4个回答
热心网友
时间:2022-04-08 11:53
在java也页面:
SimpleDateFormat sDateFormat = new SimpleDateFormat("yyyy/MM/dd "); //时间格式化的格式
String nowTimeStr = sDateFormat.format(new Date()); //当前时间,换成数据库的时间就行了
如果要在jsp页面,就用
<fmt:formatDate value="你的时间" pattern="yyyy-MM-dd" type="date" dateStyle="long" />就ok了注意引入fmt:<%@ taglib uri="http://java.sun.com/jsp/jstl/fmt" prefix="fmt" %>
热心网友
时间:2022-04-08 13:11
SimpleDateFormat sdf = new SimpleDateFormat ("yyyy-mm-dd");
使用这个类,可以格式化时间,这里的规则是格式化到年月日,格式如括号参数写的
具体参考,http://blog.csdn.net/gubaohua/article/details/575488
热心网友
时间:2022-04-08 14:45
java里面传正常的Date格式
mysql语句:select * from test where to_days(test_date) = to_days('时间参数');
热心网友
时间:2022-04-08 16:37
使用SimpleDateFormat
SimpleDateFormat format = new SimpleDateFormat("yyyy-MM-dd");
String date = format.format(你从数据库拿到的date);