黑马程序员技术交流社区

标题: Date simpleDateFormat [打印本页]

作者: yunzhongzhuhuo    时间: 2014-3-3 00:02
标题: Date simpleDateFormat
  1. import java.text.SimpleDateFormat;
  2. import java.util.Date;

  3. public class Test {

  4.         public static void main(String[] args) {
  5.                 // TODO Auto-generated method stub
  6.                 Date nowTime=new Date();
  7.                 System.out.println("现在的时间:"+nowTime);
  8.                 SimpleDateFormat matter1=new SimpleDateFormat("'BeijingTime':yyyy-MM-dd");
  9.                 System.out.println("现在时间:"+matter1.format(nowTime));
  10.                
  11.                 SimpleDateFormat matter2=new SimpleDateFormat("北京时间 yyyy-MM-dd HH:mm:ss(a)(EE)");
  12.                 System.out.println("现在时间:"+matter2.format(nowTime));
  13.                
  14.                 long time=-1000L;//[color=Magenta]这个负数,是个什么意思,下面怎么还能打印出时间[/color]
  15.                 Date date=new Date(time);
  16.                 System.out.println(time+"秒表示的日期时间是:"+matter2.format(date));
  17.                
  18.                 time=1000L;
  19.                 date=new Date(time);
  20.                 System.out.println(time+"秒表示的时间时间是:"+matter2.format(date));
  21.                
  22.         }
  23. }
复制代码

作者: 行如止水    时间: 2014-3-3 00:11
你想问什么?
作者: yunzhongzhuhuo    时间: 2014-3-3 09:40
行如止水 发表于 2014-3-3 00:11
你想问什么?

那个-1000L后面还能打印出来时间哩
作者: twtzhongxin    时间: 2014-3-3 10:58
date - 不超过 year 8099 的毫秒表示的自 1970 年 1 月 1 日 00:00:00 GMT 以来的毫秒数。负数指示在 1970 年 1 月 1 日 00:00:00 GMT 之前的毫秒数。




欢迎光临 黑马程序员技术交流社区 (http://bbs.itheima.com/) 黑马程序员IT技术论坛 X3.2