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

前端之家收集整理的这篇文章主要介绍了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可能是原作者么?

原文链接:https://www.f2er.com/java/125905.html

猜你在找的Java相关文章