Wir können konvertieren Datum zum String in Java verwenden Format() Methode der Klasse java.text.DateFormat.
Java Localdatetime
format()-Methode von DateFormat
Die format()-Methode der DateFormat-Klasse wird verwendet, um Date in String zu konvertieren. DateFormat ist eine abstrakte Klasse. Die untergeordnete Klasse von DateFormat ist SimpleDateFormat. Es ist die Implementierung der DateFormat-Klasse. Der Unterschrift der format()-Methode ist unten angegeben:
String format(Date d)
Beispiel für ein Java-Datum in einen String
Sehen wir uns den einfachen Code zum Konvertieren von Date in String in Java an.
Date date = Calendar.getInstance().getTime(); DateFormat dateFormat = new SimpleDateFormat('yyyy-mm-dd hh:mm:ss'); String strDate = dateFormat.format(date);
Beispiel:
import java.text.DateFormat; import java.text.SimpleDateFormat; import java.util.Date; import java.util.Calendar; public class DateToStringExample1 { public static void main(String args[]){ Date date = Calendar.getInstance().getTime(); DateFormat dateFormat = new SimpleDateFormat('yyyy-mm-dd hh:mm:ss'); String strDate = dateFormat.format(date); System.out.println('Converted String: ' + strDate); } }Testen Sie es jetzt
Ausgabe:
Converted String: 2017-24-28 04:24:27
Sehen wir uns das vollständige Beispiel an Konvertieren Sie Datum und Uhrzeit in Java in einen String Verwenden der Methode format() der Klasse java.text.SimpleDateFormat.
import java.text.ParseException; import java.text.SimpleDateFormat; import java.util.Date; import java.util.Locale; public class DateToStringExample2 { 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); } }Testen Sie es jetzt
Ausgabe:
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