JAVA中获取当前系统时间
Posted derekhan
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了JAVA中获取当前系统时间相关的知识,希望对你有一定的参考价值。
获取当前系统时间和日期并格式化输出:
import java.util.Date; import java.text.SimpleDateFormat; public class NowString public static void main(String[] args) SimpleDateFormat df = new SimpleDateFormat("yyyy-MM-dd HH:mm:ss");//设置日期格式 System.out.println(df.format(new Date()));// new Date()为获取当前系统时间
以上是关于JAVA中获取当前系统时间的主要内容,如果未能解决你的问题,请参考以下文章