hi.baidu/jan222/blog/item/9ab03c2390df014f93580715.html
public class SimpleDateFormat extends DateFormat
SimpleDateFormat 是一个以国别敏感的方式格式化和分析数据的具体类。 它允许格式化 (date -> text)、语法分析 (text -> date)和标准化。
SimpleDateFormat 允许以为日期-时间格式化选择任何用户指定的方式启动。 但是,希望用 DateFormat 中的 getTimeInstance getDateInstance getDateTimeInstance 创建一个日期-时间格式化程序。 每个类方法返回一个以缺省格式化方式初始化的日期/时间格式化程序。 可以根据需要用 applyPattern 方法修改格式化方式。

SimpleDateFormat函数的继承关系:
java.lang.Object
    |
    +----Format
            |
            +----DateFormat
                    |
                    +----SimpleDateFormat
下面是个小例子:
*;
import java.util.Date;
/**
  SimpleDateFormat函数语法:
 
  G 年代标志符
  y
  M
  d
  h 在上午或下午 (1~12)
  H 在一天中 (0~23)
  m
  s
  S 毫秒
  E 星期
  D 一年中的第几天
  F 一月中第几个星期几
  w 一年中第几个星期
  W 一月中第几个星期
  a 上午 / 下午 标记符
  k 在一天中 (1~24)
  K 在上午或下午 (0~11)
  z 时区
*/
public class FormatDateTime {
    public static void main(String[] args) {
        SimpleDateFormat myFmt=new SimpleDateFormat("yyyyMMdd HHmmss");
        SimpleDateFormat myFmt1=new SimpleDateFormat("yy/MM/dd HH:mm");
        SimpleDateFormat myFmt2=new SimpleDateFormat("yyyy-MM-dd HH:mm:ss");//等价于LocaleString()
        SimpleDateFormat myFmt3=new SimpleDateFormat("yyyyMMdd HHmmss E ");
        SimpleDateFormat myFmt4=new SimpleDateFormat(
                "一年中的第 D 一年中第w个星期 一月中第W个星期 在一天中k z时区");
        Date now=new Date();
        System.out.println(myFmt.format(now));
        System.out.println(myFmt1.format(now));
        System.out.println(myFmt2.format(now));
        System.out.println(myFmt3.format(now));
        System.out.println(myFmt4.format(now));
        System.out.GMTString());
        System.out.LocaleString());
        System.out.String());
    }   
   
}

效果:
20041216 172427
04/12/16 17:24
2004-12-16 17:24:27
20041216 172427 星期四
一年中的第 351 一年中第51个星期 一月中第3个星期 在一天中17 CST时区
16 Dec 2004 09:24:27 GMT
2004-12-16 17:24:27
Thu Dec 16 17:24:27 CST 2004

下面是个JavaBean:
public class FormatDateTime {
   
    public static String toLongDateString(Date dt){
        SimpleDateFormat myFmt=new SimpleDateFormat("yyyyMMdd HHmmss E ");       
        return myFmt.format(dt);
    }
   
    public static String toShortDateString(Date dt){
        SimpleDateFormat myFmt=new SimpleDateFormat("yyMMdd HHmm");       
        return myFmt.format(dt);
    }   
   
    public static String toLongTimeString(Date dt){
        SimpleDateFormat myFmt=new SimpleDateFormat("HH mm ss SSSS");       
        return myFmt.format(dt);
    }
    public static String toShortTimeString(Date dt){
        SimpleDateFormat myFmt=new SimpleDateFormat("yy/MM/dd HH:mm");       
        return myFmt.format(dt);
    }
   
    public static void main(String[] args) {
        Date now=new Date();
        System.out.LongDateString(now));
        System.out.ShortDateString(now));
        System.out.LongTimeString(now));
        System.out.ShortTimeString(now));
    }   
   
}
调用的main 测试结果:
20041216 173826 星期四
04java时间日期格式转换年1216 1738
17 38 26 0965
04/12/16 17:38
在java中取得当前的系统时间并且转化成自己想要的格式
    需要引进 java.util.Calendar SimpleDateFormat 这两个类:

        Calendar rightNow = Instance();
        SimpleDateFormat fmt = new SimpleDateFormat("yyyyMMddhhmmss");
        String sysDatetime = fmt.Time());   

    可以对 new SimpleDateFormat("yyyyMMddhhmmss") 中引号里面的格式进行编辑,转换成自己相要的格式,比如还可以转
    换成    new    SimpleDateFormat("yyyy/MM/dd    hh:mm:ss    ") 的格式。
其他的一些用法可以参考Java DocDateFormat.SimpleDateFormat类的Doc

版权声明:本站内容均来自互联网,仅供演示用,请勿用于商业和其他非法用途。如果侵犯了您的权益请与我们联系QQ:729038198,我们将在24小时内删除。