Comment convertir java.util.Date en chaîne en Java
Java propose plusieurs façons de convertir un objet java.util.Date en une représentation sous forme de chaîne. Voici une approche utilisant la méthode DateFormat#format :
Convertir une date en chaîne avec DateFormat#format
L'extrait de code suivant montre comment convertir un objet Date en une chaîne en utilisant la méthode DateFormat#format :
import java.text.SimpleDateFormat; import java.util.Calendar; import java.util.Date; public class DateToStringExample { public static void main(String[] args) { String pattern = "MM/dd/yyyy HH:mm:ss"; // Create an instance of SimpleDateFormat used for formatting // the string representation of date according to the chosen pattern DateFormat df = new SimpleDateFormat(pattern); // Get the today date using Calendar object. Date today = Calendar.getInstance().getTime(); // Using DateFormat format method we can create a string // representation of a date with the defined format. String todayAsString = df.format(today); // Print the result! System.out.println("Today is: " + todayAsString); } }
Ce code affichera la date et l'heure actuelles dans le délai spécifié motif.
Ce qui précède est le contenu détaillé de. pour plus d'informations, suivez d'autres articles connexes sur le site Web de PHP en chinois!