Comment convertir un java.util.Date en chaîne en Java
Problème :
Vous devez convertir un objet java.util.Date en une chaîne formatée en Java, spécifiquement au format "2010-05-30 22:15:52".
Solution :
Pour convertir un java.util.Date en chaîne en Java, vous pouvez utiliser DateFormat.format() méthode. Cette méthode prend un objet Date et un modèle de formatage en entrée et renvoie une chaîne formatée.
Voici un exemple :
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 imprimera la date et l'heure actuelles dans le format spécifié format :
Today is: 05/30/2010 22:15:52
Source :
http://www.kodejava.org/examples/86.html
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!