当前位置: 技术问答>java相关
期盼
来源: 互联网 发布时间:2015-06-10
本文导语: 哪位好心的大虾可以告诉我JAVA中 如何提取系统当前时间? 谢谢 | /** * 获取当前时间, 格式为: yyyy-mm-dd hh-mm-ss * @return String 当前时间 */ public static String getNow() { return DateFor...
哪位好心的大虾可以告诉我JAVA中
如何提取系统当前时间?
谢谢
如何提取系统当前时间?
谢谢
|
/**
* 获取当前时间, 格式为: yyyy-mm-dd hh-mm-ss
* @return String 当前时间
*/
public static String getNow()
{
return DateFormat.getDateTimeInstance(2, 2, getLocale()).format( new java.util.Date() );
}
/**
* 获取当前时间, 格式为: yyyy年mm月dd日 上午/下午hh时mm分ss秒
* @return String 当前时间
*/
public static String getNowLong()
{
return DateFormat.getDateTimeInstance(DateFormat.LONG, DateFormat.LONG, getLocale()).format( new java.util.Date() );
}
/**
* 获取当前时间(精确到毫秒), 格式为: yyyy-mm-dd hh:mm:ss.nnn
* @return String 当前时间
*/
public static String getNowNano()
{
return new java.sql.Timestamp( System.currentTimeMillis() ).toString();
}
/**
* 获取指定的Locale对象
* @return Locale 返回Locale对象
*/
private static Locale getLocale()
{
return Locale.CHINESE;
}
* 获取当前时间, 格式为: yyyy-mm-dd hh-mm-ss
* @return String 当前时间
*/
public static String getNow()
{
return DateFormat.getDateTimeInstance(2, 2, getLocale()).format( new java.util.Date() );
}
/**
* 获取当前时间, 格式为: yyyy年mm月dd日 上午/下午hh时mm分ss秒
* @return String 当前时间
*/
public static String getNowLong()
{
return DateFormat.getDateTimeInstance(DateFormat.LONG, DateFormat.LONG, getLocale()).format( new java.util.Date() );
}
/**
* 获取当前时间(精确到毫秒), 格式为: yyyy-mm-dd hh:mm:ss.nnn
* @return String 当前时间
*/
public static String getNowNano()
{
return new java.sql.Timestamp( System.currentTimeMillis() ).toString();
}
/**
* 获取指定的Locale对象
* @return Locale 返回Locale对象
*/
private static Locale getLocale()
{
return Locale.CHINESE;
}
您可能感兴趣的文章:
本站(WWW.)旨在分享和传播互联网科技相关的资讯和技术,将尽最大努力为读者提供更好的信息聚合和浏览方式。
本站(WWW.)站内文章除注明原创外,均为转载、整理或搜集自网络。欢迎任何形式的转载,转载请注明出处。
本站(WWW.)站内文章除注明原创外,均为转载、整理或搜集自网络。欢迎任何形式的转载,转载请注明出处。