java获取系统当前时间

警告
本文最后更新于 2020-11-30 10:20,文中内容可能已过时。

代码:

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
cat > NowString.java <<EOF
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()));
  }
}
EOF

编译: javac NowString.java

运行: java NowString

请我喝杯水
SoulChild 微信号 微信号
SoulChild 微信打赏 微信打赏
0%