博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
java日期格式(年月日时分秒毫秒)
阅读量:6283 次
发布时间:2019-06-22

本文共 1215 字,大约阅读时间需要 4 分钟。

package test.remote.tools.combine;    import java.text.SimpleDateFormat;  import java.util.Calendar;  import java.util.Date;  import java.util.GregorianCalendar;    public class TestOutDate   {      public static void main(String[] args)      {          //method 1          Calendar nowtime = new GregorianCalendar();          String strDateTime="["+String.format("%04d", nowtime.get(Calendar.YEAR))+"/"+                  String.format("%02d", nowtime.get(Calendar.MONTH))+"/" +                  String.format("%02d", nowtime.get(Calendar.DATE))+" " +                  String.format("%02d", nowtime.get(Calendar.HOUR))+":" +                  String.format("%02d", nowtime.get(Calendar.MINUTE))+":" +                  String.format("%02d", nowtime.get(Calendar.SECOND))+"." +                  String.format("%03d", nowtime.get(Calendar.MILLISECOND))+"]";          System.out.println(strDateTime);                    //method 2          String msg="";          Date date = new Date();          SimpleDateFormat sdf = new SimpleDateFormat("YYYY/MM/dd HH:mm:ss.SSS");          msg+="["+sdf.format(date)+"]";                    System.out.println(msg);      }  }

 运行结果:

[2018/04/25 02:51:33.379]

[2018/05/25 14:51:33.393]

转载地址:http://utxva.baihongyu.com/

你可能感兴趣的文章
第三章:Shiro的配置——深入浅出学Shiro细粒度权限开发框架
查看>>
80后创业的经验谈(转,朴实但实用!推荐)
查看>>
让Windows图片查看器和windows资源管理器显示WebP格式
查看>>
我的友情链接
查看>>
我的友情链接
查看>>
vim使用点滴
查看>>
embedded linux学习中几个需要明确的概念
查看>>
mysql常用语法
查看>>
Morris ajax
查看>>
【Docker学习笔记(四)】通过Nginx镜像快速搭建静态网站
查看>>
ORA-12514: TNS: 监听程序当前无法识别连接描述符中请求的服务
查看>>
<转>云主机配置OpenStack使用spice的方法
查看>>
java jvm GC 各个区内存参数设置
查看>>
[使用帮助] PHPCMS V9内容模块PC标签调用说明
查看>>
关于FreeBSD的CVSROOT的配置
查看>>
基于RBAC权限管理
查看>>
基于Internet的软件工程策略
查看>>
数学公式的英语读法
查看>>
留德十年
查看>>
迷人的卡耐基说话术
查看>>