时间戳与Date类型转换
时间戳与Date类型的相互转
public static void main(String[] args) {
// 10位的秒级别的时间戳
long time1 = 1572509722L;
// 13位的秒级别的时间戳
double time2 = 1572509722000d;
String result1 = new SimpleDateFormat("yyyy-MM-dd HH:mm:ss").format(new Date(time1 * 1000));
System.out.println("10位数的时间戳(秒)--->Date:" + result1);
Date date1 = new Date(time1*1000); //对应的就是时间戳对应的Date
String result2 = new SimpleDateFormat("yyyy-MM-dd HH:mm:ss").format(time2);
System.out.println("13位数的时间戳(毫秒)--->Date:" + result2);
}
Date转时间戳
public static void main(String[] args) {
//获取指定时间的时间戳,除以1000说明得到的是秒级别的时间戳(10位)
long time = (new SimpleDateFormat("yyyy-MM-dd HH:mm:ss")).parse("2019-09-30 24:00:00", new ParsePosition(0)).getTime() / 1000; //获取时间戳
long now1 = System.currentTimeMillis();
long now2 = new Date().getTime();
System.out.println("获取指定时间的时间戳:" + time);
System.out.println("当前时间戳:" +now1);
System.out.println("当前时间戳:" +now2);
}
格式化Date
public static void main(String[] args) {
//使⽤common-lang包下⾯的DateFormatUtils类
//DateFormatUtils是commons.lang3.time.DateFormatUtils下的,如果你的项⽬中没有,maven中引⼊下:
String format1 = DateFormatUtils.format(new Date(), "yyyy-MM-dd HH:mm:ss");
//使⽤最原始的SimpleDateFormat类
String format2 = new SimpleDateFormat("yyyy-MM-dd HH:mm:ss").format(new Date());
System.out.println("格式化时间1:" + format1);
System.out.println("格式化时间2:" + format2);
}
给⽇期加上指定时长(需求是给现在的时间加上12个⼩时)
public static void main(String[] args) {
//将指定⽇期加上固定时间,DateUtils还有其它添加分钟、⼩时、⽉份之类的⽅法api
//使⽤到的是commons-lang包下⾯的DateUitls类
Date date = DateUtils.addDays(new Date(), 10); //
System.out.println("当前时间为:"+DateFormatUtils.format(new Date(),"yyyy-MM-dd HH:mm:ss"));
String format = DateFormatUtils.format(date, "yyyy-MM-dd HH:mm:ss");
System.out.println("当前时间加上10天后:" + format);
}
得到指定时间节点的⽇期时间
public static void main(String[] args) throws ParseException {
/
/得到指定⽇期
String date = "2018-03-03 15:20:12";
Date parse = new SimpleDateFormat("yyyy-MM-dd HH:mm:ss").parse(date);
System.out.println(parse);
string转date的方法}
判断两个时间点是否为同⼀天、同⼀年(需求:给定两个⽇期,快速判断两者是否为同⼀天或者同⼀年)
借助于commons-lang3这个jar中的DateUtils.isSameDay⽅法来实现
public static boolean isSameDay(Date date1, Date date2) {
if(date1 != null && date2 != null) {
Calendar cal1 = Instance();
cal1.setTime(date1);
Calendar cal2 = Instance();
cal2.setTime(date2);
return isSameDay(cal1, cal2);
} else {
throw new IllegalArgumentException("The date must not be null");
}
}
public static boolean isSameDay(Calendar cal1, Calendar cal2) {
if(cal1 != null && cal2 != null) {
(0) == (0) && (1) == (1) && (6) == (6);
} else {
throw new IllegalArgumentException("The date must not be null");
}
}
commons-lang包中的isSameDay⽅法的实现思想为:利⽤是否是同⼀ERA(翻译成:世纪)且同⼀年的第N天来判断的。如何得到当前时间的明天零点时间
public static void main(String[] args) {
Date currentEndDate = new Date();
Calendar cal = Instance();
cal.setTime(currentEndDate);
cal.add(Calendar.DATE, 1);
cal.set(Calendar.AM_PM, 0);
cal.set(Calendar.HOUR, 0);
cal.set(Calendar.MINUTE, 0);
cal.set(Calendar.SECOND, 0);
Date nextDate = Time();
System.out.println(nextDate);
}
版权声明:本站内容均来自互联网,仅供演示用,请勿用于商业和其他非法用途。如果侵犯了您的权益请与我们联系QQ:729038198,我们将在24小时内删除。
发表评论