SimpleDateFormat的格式化语法是Java发明吗?

JavaSimpleDateFormat类(如“EEE,MMM d”,“yy”等)定义的日期时间格式字符串的语法是原始的Java发明,还是基于其他一些语法定义,如 ICU’sCLDR’s

有没有人知道将SimpleDateFormat语法与其他定义进行比较的工作?

解决方法

JDK 1.1中介绍的java.text.*,基于 ICU

ICU was originally developed by the Unicode group at the IBM
Globalization Center of Competency in Cupertino,and ICU was
contributed to Sun for inclusion into the JDK 1.1. ICU4J includes
enhanced versions of some of these contributed classes plus additional
classes that complement the classes in the JDK.

ICU拥有SimpleDateFormat表示其符号基于“UTS#35 Unicode语言环境数据标记语言(LDML)”定义的算法和模式字母“,可以在here找到.

有趣的是,日期模式一章从2004年10月27日引入了Revision 3年的Unicode技术报告#35.那么ICU可能是原作者么?

相关文章

最近看了一下学习资料,感觉进制转换其实还是挺有意思的,尤...
/*HashSet 基本操作 * --set:元素是无序的,存入和取出顺序不...
/*list 基本操作 * * List a=new List(); * 增 * a.add(inde...
/* * 内部类 * */ 1 class OutClass{ 2 //定义外部类的成员变...
集合的操作Iterator、Collection、Set和HashSet关系Iterator...
接口中常量的修饰关键字:public,static,final(常量)函数...