Prevod java.util.Date na String

Chcem previesť objekt java.util.Date na String v Jave.

Formát je 2010-05-30 22:15:52

Riešenie

Prevod Date na String pomocou metódy DateFormat#format:

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);

Z http://www.kodejava.org/examples/86.html

Komentáre (8)
Format formatter = new SimpleDateFormat("yyyy-MM-dd HH:mm:ss");
String s = formatter.format(date);
Komentáre (1)

Vyzerá to, že hľadáte SimpleDateFormat.

Formát: rrrr-MM-dd kk:mm:ss

Komentáre (6)