我有以下日期,
24/04/2019 13/05/2019 12/04/2019
我想删除年份并将这些日期转换为以下格式,
24/04 13/05 12/04
这不仅仅用于输出我想在该日期执行添加或申请循环.
MonthDay // Represent a month & day-of-month, without a year. .from( // Extract a `MonthDay` from a `LocalDate`, omitting the year but keeping the month and day-of-month. LocalDate // Represent a date-only value, without time-of-day and without time zone. .parse( // Parse a string to get a `LocalDate`. "24/04/2019" , // FYI, better to use standard ISO 8601 formats rather than devising a custom format such as this. DateTimeFormatter.ofPattern( "dd/MM/uuuu" ) // Match the formatting pattern of your input strings. ) // Returns a `LocalDate`. ) // Returns a `MonthDay`. .format( // Generate a `String` with text representing the value of this `MonthDay` object. DateTimeFormatter.ofPattern( "dd/MM" ) ) // Returns a `String`.
请参阅IdeOne.com上的此代码.
24/04
LocalDate
& MonthDay
Java内置了这个工作的类:
LocalDate
表示没有时间且没有时区或从UTC偏移的仅日期值.
MonthDay
代表一个月中的一天,一般来说,没有一年.
解析输入字符串以获取LocalDate
对象.定义格式模式以匹配输入格式.
String input = "24/04/2019" ; DateTimeFormatter f = DateTimeFormatter.ofPattern( "dd/MM/uuuu" ) ;
解析.
LocalDate ld = LocalDate.parse( input , f ) ;
生成标准ISO 8601格式的字符串YYYY-MM-DD.我强烈建议您在将日期时间值作为文本交换时使用这些格式,而不是设计自己的自定义格式.
在解析/生成字符串时,java.time类默认使用这些标准格式.因此无需指定格式化模式.
String output = ld.toString() ;
2019年4月24日
只提取月份和日期,而忽略年份.
MonthDay md = MonthDay.from( ld ) ; // Extract the month & day-of-month, but omit the year.
生成标准ISO 8601格式的字符串.格式在前面使用双连字符表示缺少的年份.
String output = md.toString():
--04-24
您也可以解析此值.
MonthDay md = MonthDay.parse( "--04-24" ) ;
你可以LocalDate
通过指定一年来回到a.
LocalDate ld = md.atYear( 2019 ) ; // Generate a `LocalDate` by specifying a year to go with the month & day.
不仅仅是输出我想在那个日期执行添加或申请循环.
研究这两个类的JavaDoc.提供了许多方便的方法.
你可以和isBefore
和比较isAfter
.
您可以进行数学运算,添加或减去时间跨度.您可以进行调整,例如跳转到特定的某个日期.请注意,java.time类遵循不可变对象模式.因此,不是更改("改变")原始对象,而是使用基于原始值的值创建第二个对象.
该java.time框架是建立在Java 8和更高版本.这些类取代麻烦的老传统日期时间类,如java.util.Date
,Calendar
,和SimpleDateFormat
.
现在处于维护模式的Joda-Time项目建议迁移到java.time类.
要了解更多信息,请参阅Oracle教程.并搜索Stack Overflow以获取许多示例和解释.规范是JSR 310.
您可以直接与数据库交换java.time对象.使用符合JDBC 4.2或更高版本的JDBC驱动程序.不需要字符串,不需要课程.java.sql.*
从哪里获取java.time类?
Java SE 8, Java SE 9, Java SE 10, Java SE 11及更高版本 - 带有捆绑实现的标准Java API的一部分.
Java 9增加了一些小功能和修复.
Java SE 6和 Java SE 7
大多数java.time功能都在ThreeTen- Backport中反向移植到Java 6和7 .
Android的
更高版本的Android捆绑java.time类的实现.
对于早期的Android(<26),ThreeTenABP项目采用ThreeTen-Backport(如上所述).请参阅如何使用ThreeTenABP ....
该ThreeTen-额外项目与其他类扩展java.time.该项目是未来可能添加到java.time的试验场.您可以在此比如找到一些有用的类Interval
,YearWeek
,YearQuarter
,和更多.