欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  IT编程

Java中SimpleDateFormat的使用方法

程序员文章站 2024-02-22 21:30:10
本文内容大多基于官方文档和网上前辈经验总结,经过个人实践加以整理积累,仅供参考。 java.text.simpledateformat 以区域语言环境敏感的方式格式化和解...

本文内容大多基于官方文档和网上前辈经验总结,经过个人实践加以整理积累,仅供参考。

java.text.simpledateformat 以区域语言环境敏感的方式格式化和解析日期,可以将日期格式化为指定字符串和将字符串解析成日期。

java.text.simpledateformat 可以根据用户定义的模式格式化日期

@test
public void test() {
  calendar calendar = calendar.getinstance();
  calendar.set(2016, 11, 30, 24, 59, 59);
  date date = new date(calendar.gettimeinmillis());
  string pattern = "g yyyy年mm月dd日hh点mm分ss秒sss毫秒";
  system.out.println(new simpledateformat(pattern).format(date));
  pattern = "g yyyy年mm月dd日kk点mm分ss秒sss毫秒";
  system.out.println(new simpledateformat(pattern).format(date));
  pattern = "g yyyy年mm月dd日hh点mm分ss秒sss毫秒 a";
  system.out.println(new simpledateformat(pattern).format(date));
  pattern = "g yyyy年mm月dd日kk点mm分ss秒sss毫秒 a";
  system.out.println(new simpledateformat(pattern).format(date));
  pattern = "g yyyy年mm月dd日kk点mm分ss秒sss毫秒 a";
  system.out.println(new simpledateformat(pattern).format(date));
  pattern = "2016年第w星期";
  system.out.println(new simpledateformat(pattern).format(date));
  pattern = "2016年12月第w星期";
  system.out.println(new simpledateformat(pattern).format(date));
  pattern = "2016年第d天";
  system.out.println(new simpledateformat(pattern).format(date));
  pattern = "2016年12月第d天";
  system.out.println(new simpledateformat(pattern).format(date));
  pattern = "2016年12月31日处在2016年12月的第f星期";
  system.out.println(new simpledateformat(pattern).format(date));
  pattern = "e";
  system.out.println(new simpledateformat(pattern).format(date));
  pattern = "2016年12月31日是所在星期的第u天";
  system.out.println(new simpledateformat(pattern).format(date));
  pattern = "大西洋标准时间:z";
  system.out.println(new simpledateformat(pattern).format(date));
  pattern = "z";
  system.out.println("rfc822时区:" + new simpledateformat(pattern).format(date));
  pattern = "x";
  system.out.println("iso8601时区:" + new simpledateformat(pattern).format(date));
}

运行结果:

Java中SimpleDateFormat的使用方法

以上就是本文的全部内容,希望对大家的学习有所帮助,也希望大家多多支持。