web-dev-qa-db-fra.com

Comment formater la chaîne de date en java?

Bonjour, j'ai la chaîne suivante: 2012-05-20T09: 00: 00.000Z et je souhaite le formater comme si c'était le 20/05/2012 à 9h.

Comment faire en java?

Merci

35
sad tater

utiliser SimpleDateFormat d'abord parse()String à Date puis format()Date à String

30
Jigar Joshi

Si vous cherchez une solution à votre cas particulier, ce 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);
75
Keppil
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);
        }
    }
}
5
Arch