Get day, month and year separately using SimpleDateFormat

前端 未结 8 867
無奈伤痛
無奈伤痛 2021-02-08 19:45

I have a SimleDateFormat like this

SimpleDateFormat format = new SimpleDateFormat(\"MMM dd,yyyy  hh:mm\");
String date = format.format(Date.parse(p         


        
8条回答
  •  孤独总比滥情好
    2021-02-08 20:01

    tl;dr

    Use LocalDate class.

    LocalDate
    .parse(
        "Jan,23,2014" , 
        DateTimeFormatter.ofPattern( "MMM,dd,uuuu" , Locale.US )
    )
    .getYear()
    

    … or .getMonthValue() or .getDayOfMonth.

    java.time

    The other Answers use outmoded classes. The java.time classes supplant those troublesome old legacy classes.

    LocalDate

    The LocalDate class represents a date-only value without time-of-day and without time zone.

    String input = "Jan,23,2014";
    DateTimeFormatter f = DateTimeFormatter.ofPattern( "MMM,d,uuuu" );
    LocalDate ld = LocalDate.parse( input , f );
    

    Interrogate for the parts you want.

    int year = ld.getYear();
    int month = ld.getMonthValue();
    int dayOfMonth = ld.getDayOfMonth();
    

    About java.time

    The java.time framework is built into Java 8 and later. These classes supplant the troublesome old legacy date-time classes such as java.util.Date, Calendar, & SimpleDateFormat.

    The Joda-Time project, now in maintenance mode, advises migration to the java.time classes.

    To learn more, see the Oracle Tutorial. And search Stack Overflow for many examples and explanations. Specification is JSR 310.

    You may exchange java.time objects directly with your database. Use a JDBC driver compliant with JDBC 4.2 or later. No need for strings, no need for java.sql.* classes.

    Where to obtain the java.time classes?

    • Java SE 8, Java SE 9, Java SE 10, Java SE 11, and later - Part of the standard Java API with a bundled implementation.
      • Java 9 adds some minor features and fixes.
    • Java SE 6 and Java SE 7
      • Most of the java.time functionality is back-ported to Java 6 & 7 in ThreeTen-Backport.
    • Android
      • Later versions of Android bundle implementations of the java.time classes.
      • For earlier Android (<26), the ThreeTenABP project adapts ThreeTen-Backport (mentioned above). See How to use ThreeTenABP….

    The ThreeTen-Extra project extends java.time with additional classes. This project is a proving ground for possible future additions to java.time. You may find some useful classes here such as Interval, YearWeek, YearQuarter, and more.

提交回复
热议问题