java如何取系统时间几点

java如何取系统时间几点,第1张

import javautilCalendar;

Calendar c = CalendargetInstance();

Systemoutprintln("当前" + cget(CalendarHOUR) + "点");

下面是我写的一个类,主要就是使用SimpleDateFormat将取得的时间(我取得的是默认当前时间,具体的你可以改)进行格式化输出已经根据你要的格式进行了修改,精确到小时

import javautil;

public class DateUtil{

public static String getDateString() {

SimpleDateFormat fmt = new SimpleDateFormat("yyyyMMddHH");

return fmtformat(new Date());

}

}

常用的格式为:yyyy-MM-dd HH:mm:ss,分别对应年月日时分秒,你自己改吧

JAVA取得昨天的当前时间的方法:

1、定义时间格式

private static final String CURRENT_DATE_FORMAT = "yyyy-MM-dd hh24:mm:ss";

2、定义format方法内容

public final static String format(Date date) {

DateFormat dateFormat = new SimpleDateFormat(CURRENT_DATE_FORMAT);

return dateFormatformat(date);

}

3、获取昨天的时间并format完后输出标准格式

public final static String formatYesterday() {

return format(new Date(new Date()getTime() - 2436001000));

//定义date实例后,减去2436001000就默认减了一天。。

}

以上就是关于java如何取系统时间几点全部的内容,包括:java如何取系统时间几点、java中取得时间、JAVA取得昨天的当前时间等相关内容解答,如果想了解更多相关内容,可以关注我们,你们的支持是我们更新的动力!

欢迎分享,转载请注明来源:内存溢出

原文地址: http://outofmemory.cn/web/9759046.html

(0)
打赏 微信扫一扫 微信扫一扫 支付宝扫一扫 支付宝扫一扫
上一篇 2023-05-01
下一篇 2023-05-01

发表评论

登录后才能评论

评论列表(0条)

保存