java获取系统当前时间 SoulChild 收录于 其他 2020-11-30 10:19 约 47 字 预计阅读 1 分钟 - 次阅读 警告本文最后更新于 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请我喝杯水 赞赏 微信号 微信打赏Please enable JavaScript to view the comments powered by giscus.