Comment formater une chaîne de date en java? [dupliquer]
cette question a déjà une réponse ici:
Salut j'ai la chaîne suivante:2012-05-20T09:00:00.000 Z et je veux le formater pour être comme 20/05/2012, de 9h
comment faire en java?
Merci
30
demandé sur
Jigar Joshi
2012-06-15 11:03:37
3 réponses
utiliser SimpleDateFormat
à la première parse()
String
à Date
et ensuite format()
Date
à String
29
répondu
Jigar Joshi
2012-06-15 07:04:28
si vous cherchez une solution à votre cas particulier, il serait:
Date date = new SimpleDateFormat("yyyy-MM-dd'T'HH:mm:ss.SSS'Z'").parse("2012-05-20T09:00:00.000Z");
String formattedDate = new SimpleDateFormat("dd/MM/yyyy, Ka").format(date);
73
répondu
Keppil
2015-10-14 20:00:44
package newpckg;
import java.util.Date;
import java.text.ParseException;
import java.text.SimpleDateFormat;
public class StrangeDate {
public static void main(String[] args) {
// string containing date in one format
// String strDate = "2012-05-20T09:00:00.000Z";
String strDate = "2012-05-20T09:00:00.000Z";
try {
// create SimpleDateFormat object with source string date format
SimpleDateFormat sdfSource = new SimpleDateFormat(
"yyyy-MM-dd'T'hh:mm:ss'.000Z'");
// parse the string into Date object
Date date = sdfSource.parse(strDate);
// create SimpleDateFormat object with desired date format
SimpleDateFormat sdfDestination = new SimpleDateFormat(
"dd/MM/yyyy, ha");
// parse the date into another format
strDate = sdfDestination.format(date);
System.out
.println("Date is converted from yyyy-MM-dd'T'hh:mm:ss'.000Z' format to dd/MM/yyyy, ha");
System.out.println("Converted date is : " + strDate.toLowerCase());
} catch (ParseException pe) {
System.out.println("Parse Exception : " + pe);
}
}
}
4
répondu
Arch
2012-06-15 07:19:30