Renvoie le type de chaîne pour JSON
Formatez-le simplement deux fois, par exemple :
Code Java
Copiez le code comme suit :
Chaîne s = « 2012-08-25 » ;
SimpleDateFormat sdf1 = new SimpleDateFormat("aaaa-MM-jj");
SimpleDateFormat sdf2 = new SimpleDateFormat("Aaaa année M mois j jour");
essayer {
System.out.println(sdf2.format(sdf1.parse(s)));
} catch (ParseException e) {
// TODO Bloc catch généré automatiquement
//www.heatpress123.net
e.printStackTrace();
}
Sortie : 25 août 2012
Code Java
Copiez le code comme suit :
Chaîne str = "25/08/2012" ;
SimpleDateFormat sdf3 = new SimpleDateFormat("aaaa/MM/jj");
SimpleDateFormat sdf4 = new SimpleDateFormat("aaaa année MM mois jj jour");
essayer {
System.out.println(sdf4.format(sdf3.parse(str)));
} catch (ParseException e) {
// TODO Bloc catch généré automatiquement
e.printStackTrace();
}
Sortie : 25 août 2012