logo

Prosty format daty w Javie

Klasa java.text.SimpleDateFormat udostępnia metody formatowania i analizowania daty i godziny w języku Java. SimpleDateFormat to konkretna klasa do formatowania i analizowania daty, która dziedziczy klasę java.text.DateFormat.

Zauważ, że formatowanie oznacza konwersję daty na ciąg znaków I parsowanie oznacza konwersję dotychczasowego ciągu znaków .

Konstruktory klasy SimpleDateFormat

SimpleDateFormat(String wzór_args): Tworzy instancję klasy SimpleDateFormat przy użyciu podanego wzorca - wzór_args, domyślne symbole formatu daty dla domyślnych ustawień regionalnych FORMAT.

SimpleDateFormat(String wzór_args, Ustawienia regionalne_args): Tworzy instancję klasy SimpleDateFormat przy użyciu podanego wzorca - wzór_args. Dla podanych ustawień regionalnych FORMAT domyślnymi symbolami formatu daty są - locale_args.

Linux zmień nazwę folderu

SimpleDateFormat(String wzór_args, DateFormatSymbols formatSymbols): Tworzy instancję klasy SimpleDateFormat i korzystając z podanego wzorca - wzór_args oraz format datySymbols.

Przykład Java SimpleDateFormat: Data na ciąg

Zobaczmy prosty przykład formatuj datę w Javie przy użyciu klasy java.text.SimpleDateFormat.

Nazwa pliku: SimpleDateFormatExample.java

 import java.text.SimpleDateFormat; import java.util.Date; public class SimpleDateFormatExample { public static void main(String[] args) { Date date = new Date(); SimpleDateFormat formatter = new SimpleDateFormat('dd/MM/yyyy'); String strDate= formatter.format(date); System.out.println(strDate); } } 
Przetestuj teraz

Wyjście:

13/04/2015 

Uwaga: M (duże M) oznacza miesiąc, a m (małe m) oznacza minutę w Javie.

Zobaczmy pełny przykład sformatuj datę i godzinę w Javie przy użyciu klasy java.text.SimpleDateFormat.

Nazwa pliku: SimpleDateFormatExample2.java

 import java.text.ParseException; import java.text.SimpleDateFormat; import java.util.Date; import java.util.Locale; public class SimpleDateFormatExample2 { public static void main(String[] args) { Date date = new Date(); SimpleDateFormat formatter = new SimpleDateFormat('MM/dd/yyyy'); String strDate = formatter.format(date); System.out.println('Date Format with MM/dd/yyyy : '+strDate); formatter = new SimpleDateFormat('dd-M-yyyy hh:mm:ss'); strDate = formatter.format(date); System.out.println('Date Format with dd-M-yyyy hh:mm:ss : '+strDate); formatter = new SimpleDateFormat('dd MMMM yyyy'); strDate = formatter.format(date); System.out.println('Date Format with dd MMMM yyyy : '+strDate); formatter = new SimpleDateFormat('dd MMMM yyyy zzzz'); strDate = formatter.format(date); System.out.println('Date Format with dd MMMM yyyy zzzz : '+strDate); formatter = new SimpleDateFormat('E, dd MMM yyyy HH:mm:ss z'); strDate = formatter.format(date); System.out.println('Date Format with E, dd MMM yyyy HH:mm:ss z : '+strDate); } } 
Przetestuj teraz

Wyjście:

Date Format with MM/dd/yyyy : 04/13/2015 Date Format with dd-M-yyyy hh:mm:ss : 13-4-2015 10:59:26 Date Format with dd MMMM yyyy : 13 April 2015 Date Format with dd MMMM yyyy zzzz : 13 April 2015 India Standard Time Date Format with E, dd MMM yyyy HH:mm:ss z : Mon, 13 Apr 2015 22:59:26 IST 

Przykład Java SimpleDateFormat: ciąg znaków do daty

Zobaczmy prosty przykład przekonwertuj ciąg na datę przy użyciu klasy java.text.SimpleDateFormat.

Nazwa pliku: SimpleDateFormatExample3.java

 import java.text.ParseException; import java.text.SimpleDateFormat; import java.util.Date; public class SimpleDateFormatExample3 { public static void main(String[] args) { SimpleDateFormat formatter = new SimpleDateFormat('dd/MM/yyyy'); try { Date date = formatter.parse('31/03/2015'); System.out.println('Date is: '+date); } catch (ParseException e) {e.printStackTrace();} } } 
Przetestuj teraz

Wyjście:

Date is: Tue Mar 31 00:00:00 IST 2015 

Metody

set2DigitYearStart()

Składnia:

 public void set2DigitYearStart(Date startDate) 

Parametry:

startDate: Data została ustawiona w zakresie - startDate do startDate + 100 lat

Typ zwrotu:

Typ zwracanej metody jest nieważny

Realizacja:

Zobaczmy, jak można zaimplementować tę metodę w kodzie.

Nazwa pliku: Set2DigitYearStart.java

 // important import statements import java.util.Calendar; import java.text.*; public class Set2DigitYearStart { // main method public static void main(String argvs[]) throws InterruptedException { // creating an object of the class SimpleDateFormat SimpleDateFormat sdf = new SimpleDateFormat('MM / dd / yy' ); try { // getting the instance of the class Calendar Calendar clndr = Calendar.getInstance(); clndr.setTime(sdf.parse('11 / 12 / 21')); System.out.println('Initial Timing is : ' + clndr.getTime()); // Setting 2020 // Using the set2DigitYearStart() method sdf.set2DigitYearStart(sdf.parse('02 / 02 / 2000')); clndr.setTime(sdf.parse('02 / 02 / 15')); System.out.println('The New Timing is : ' + clndr.getTime()); } catch (ParseException exp) { exp.printStackTrace(); } } } 

Wyjście:

 Initial Timing is : Fri Nov 12 00:00:00 GMT 2021 The New Timing is : Mon Feb 02 00:00:00 GMT 2015 

get2DigitYearStart()

Składnia:

 public Date get2DigitYearStart() 

Parametry:

Dla tej metody nie jest wymagany żaden parametr

Typ zwrotu:

Typ zwracany przez metodę to Date i zwraca początek 100-letniego okresu, który został ustawiony podczas analizowania.

Realizacja:

Zobaczmy, jak można zaimplementować tę metodę w kodzie.

Nazwa pliku: Get2DigitYearStart.java

 // important import statements import java.util.Calendar; import java.text.*; public class Get2DigitYearStart { // main method public static void main(String argvs[]) throws InterruptedException { // creating an object of the class SimpleDateFormat SimpleDateFormat sdf = new SimpleDateFormat('MM / dd / yy' ); try { // getting the instance of the class Calendar Calendar clndr = Calendar.getInstance(); clndr.setTime(sdf.parse('11 / 12 / 21')); System.out.println('Initial Timing is : ' + clndr.getTime()); // Setting 2020 // Using the set2DigitYearStart() method sdf.set2DigitYearStart(sdf.parse('02 / 02 / 2000')); System.out.println('The New Timing is : ' + clndr.getTime()); // Using the method get2DigitYearStart() for checking the start year clndr.setTime(sdf.get2DigitYearStart()); System.out.println('The start year is: ' + clndr.get(Calendar.YEAR)); } catch (ParseException exp) { exp.printStackTrace(); } } } 

Wyjście:

 Initial Timing is : Fri Nov 12 00:00:00 GMT 2021 The New Timing is : Mon Feb 02 00:00:00 GMT 2015 The start year is: 2000 

doWzorzec()

Składnia:

 public String toPattern() 

Parametry:

Dla tej metody nie jest wymagany żaden parametr

Typ zwrotu:

Typ zwracany przez metodę to String i zwraca wzorzec formatu daty.

Realizacja:

Zobaczmy, jak można zaimplementować tę metodę w kodzie.

Nazwa pliku: DoPattern.java

 // important import statements import java.util.Calendar; import java.text.*; public class ToPattern { // main method public static void main(String argvs[]) throws InterruptedException { // creating an object of the class SimpleDateFormat SimpleDateFormat sdf = new SimpleDateFormat(); // Initializing the Calendar object Calendar clndr = Calendar.getInstance(); // getting the Current Date String currDate = sdf.format(clndr.getTime()); System.out.println('Current Date : ' + currDate); // Using the toPattern() method // Displaying the Date Pattern System.out.println('The Date Pattern is: ' + sdf.toPattern()); } } 

Wyjście:

 Current Date : 12/11/21, 7:24 AM The Date Pattern is: M/d/yy, h:mm a 

analizować()

Składnia:

 public Date parse() 

Parametry:

Dla tej metody nie jest wymagany żaden parametr

Typ zwrotu:

Typ zwracany przez metodę to Date i zwraca przeanalizowaną datę.

Realizacja:

Zobaczmy, jak można zaimplementować tę metodę w kodzie.

Nazwa pliku: Parse.java

 // important import statements import java.util.Calendar; import java.text.*; public class Parse { // main method public static void main(String argvs[]) throws InterruptedException { // creating an object of the class SimpleDateFormat SimpleDateFormat sdf = new SimpleDateFormat('MM / dd / yy' ); try { // getting the instance of the class Calendar Calendar clndr = Calendar.getInstance(); clndr.setTime(sdf.parse('11 / 12 / 21')); System.out.println('Initial Timing is : ' + clndr.getTime()); } catch (ParseException exp) { exp.printStackTrace(); } } } 

Wyjście:

 Initial Timing is : Fri Nov 12 00:00:00 GMT 2021 

zastosuj wzór()

Składnia:

 public void applyPattern() 

Parametry:

Dla tej metody nie jest wymagany żaden parametr

Typ zwrotu:

Typ zwracany przez metodę jest nieważny. Dlatego metoda nic nie zwraca.

Realizacja:

Zobaczmy, jak można zaimplementować tę metodę w kodzie.

Nazwa pliku: ApplyPattern.java

 // important import statements import java.util.Calendar; import java.text.*; public class ApplyPattern { // main method public static void main(String argvs[]) throws InterruptedException { // creating an object of the class SimpleDateFormat SimpleDateFormat sdf = new SimpleDateFormat(); // Initializing calendar Object Calendar clndr = Calendar.getInstance(); // Using the arg pattern String ar = 'dd / MM / yyyy HH:mm Z'; // Using the method applyPattern() to set the date to arg format sdf.applyPattern(ar); // for the current time and date String currDate = sdf.format(clndr.getTime()); System.out.println('The current date is: ' + currDate); // Printing the pattern used System.out.println('The Pattern applied is: ' + sdf.toPattern()); } } 

Wyjście:

 The current date is: 11 / 12 / 2021 07:41 +0000 The Pattern applied is: dd / MM / yyyy HH:mm Z 

format()

Składnia:

 public final String format(Date args) 

Parametry:

Metoda przyjmuje jako argument Date

Typ zwrotu:

Typ zwracany przez metodę to String, a metoda zwraca sformatowany ciąg daty.

Realizacja:

Zobaczmy, jak można zaimplementować tę metodę w kodzie.

Nazwa pliku: Format.java

 // important import statements import java.util.Calendar; import java.text.*; public class Format { // main method public static void main(String argvs[]) throws InterruptedException { // creating an object of the class SimpleDateFormat SimpleDateFormat sdf = new SimpleDateFormat(); // Initializing calendar Object Calendar clndr = Calendar.getInstance(); System.out.println('The actual date is: ' + clndr.getTime()); // use theh format() method for the current time and date String currDate = sdf.format(clndr.getTime()); System.out.println('The formatted date is: ' + currDate); } } 

Wyjście:

 The actual date is: Sat Dec 11 13:48:36 GMT 2021 The formatted date is: 12/11/21, 1:48 PM 

doLocalizedPattern()

Składnia:

 public String toLocalizedPattern() 

Parametry:

Metoda nie przyjmuje żadnych argumentów

Typ zwrotu:

Typ zwracany przez metodę to String, a metoda zwraca ciąg wzorca daty z formatera daty.

Realizacja:

Zobaczmy, jak można zaimplementować tę metodę w kodzie.

Nazwa pliku: DoLocalizedPattern.java

moduły sprężynowe
 // important import statements import java.util.Calendar; import java.text.*; public class ToLocalizedPattern { // main method public static void main(String argvs[]) throws InterruptedException { // creating an object of the class SimpleDateFormat SimpleDateFormat sdf = new SimpleDateFormat(); // Initializing calendar Object Calendar clndr = Calendar.getInstance(); System.out.println('The Date is: ' + sdf.format(clndr.getTime())); // Using the format() method for formatting the Date to String System.out.println('The pattern in the DateFormater is : ' + sdf.toLocalizedPattern()); } } 

Wyjście:

 The Date is: 12/11/21, 3:01 PM The pattern in the DateFormater is : M/d/yy, h:mm a