当前位置:Gxlcms >
数据库问题 >
java向MySQL插入当前时间的四种方式和java时间日期格式化的几种方法(案例说明)
java向MySQL插入当前时间的四种方式和java时间日期格式化的几种方法(案例说明)
时间:2021-07-01 10:21:17
帮助过:16人阅读
public class TransformDate {
/**
* 直接将当前时间只按日期(时间为0)作为mysql时间戳字段的条件
* 最终返回时间类型java.sql.Date
*/
public voidtransformCurDate(){
SimpleDateFormat format =
new SimpleDateFormat(
"yyyy-MM");
java.sql.Date timePara =
null;
try {
timePara =
new java.sql.Date(
new Date().getTime());
System.out.println(timePara);
} catch (Exception e) {
e.printStackTrace();
}
}
/**
* 将java的当前时间转成指定格式(yyyy-MM-0100:00:00")作为mysql时间戳字段的条件
* 最终返回时间类型java.sql.Date
*/
public voidtransformCurYearMon(){
SimpleDateFormat format =
new SimpleDateFormat(
"yyyy-MM");
String time = format.format(
new Date()).concat(
"-0100:00:00");
java.sql.Date timePara =
null;
try {
timePara =
newjava.sql.Date(format.parse(time).getTime());
System.out.println(timePara);
} catch (ParseException e) {
e.printStackTrace();
}
}
/**
* 将java的当前时间转成Timestamp作为mysql时间戳字段的条件
* 最终返回时间类型java.sql.Timestamp
*/
public static void testData() {
try {
SimpleDateFormat sdf =
new SimpleDateFormat(
"yyyy-MM-ddhh:mm:ss");
Timestamp date = java.sql.Timestamp.valueOf(
"2012-12-1201:12:11");
System.out.println(date);
} catch (Exception e) {
e.printStackTrace();
}
}
/**
* 处理当前时间只按日期(时间为0)
* 最终返回时间类型java.util.Date
*/
public static void dataTest() {
try {
SimpleDateFormat format =
new SimpleDateFormat(
"yyyy-MM-dd");
String time = format.format(
new Date());
Date date = format.parse(time.concat(
" 00:00:00"));
System.out.println(date);
} catch (Exception e) {
e.printStackTrace();
}
}
public static void main(String[]args) {
testData();
}
}
..
java向MySQL插入当前时间的四种方式和java时间日期格式化的几种方法(案例说明)
标签:ace dstat 格式化 strong 时间类 get mcu 字段 date类