Java获取当前时间,前⼀天时间java获取当前时间,并按⼀定格式输出
1.⽤Calendar获取Date
Calendar calendar = Instance(); // 获取⽇历
SimpleDateFormat format = new SimpleDateFormat("yyyy年MM⽉dd⽇hh时mm分ss秒"); // 格式化⽇期输出格式
System.out.println(format.Time())); // 打印当前时间
java时间日期格式转换2.直接⽤Date
Date date = new Date();
SimpleDateFormat format=new SimpleDateFormat("yyyy年MM⽉dd⽇hh时mm分ss秒"); // 格式化⽇期输出格式
System.out.println(format.format(date)); // 打印当前时间
java输出前⼀天时间
Date date=new Date();
Calendar calendar = Instance();
calendar.setTime(date);
calendar.add(Calendar.DAY_OF_MONTH, -1); // 在当前⽇基础上-1
SimpleDateFormat format=new SimpleDateFormat("yyyy年MM⽉dd⽇hh时mm分ss秒");
System.out.println(format.Time()));
版权声明:本站内容均来自互联网,仅供演示用,请勿用于商业和其他非法用途。如果侵犯了您的权益请与我们联系QQ:729038198,我们将在24小时内删除。
发表评论