Mengembalikan tipe String untuk JSON
Cukup format dua kali, misalnya:
kode Jawa
Copy kode kodenya sebagai berikut:
String s = "25-08-2012";
SimpleDateFormat sdf1 = new SimpleDateFormat("yyyy-MM-dd");
SimpleDateFormat sdf2 = new SimpleDateFormat("Yyyy tahun M bulan d hari");
mencoba {
System.out.println(sdf2.format(sdf1.parse(s)));
} tangkapan (ParseException e) {
// TODO Blok tangkapan yang dibuat secara otomatis
//www.heatpress123.net
e.printStackTrace();
}
Keluaran: 25 Agustus 2012
kode Jawa
Copy kode kodenya sebagai berikut:
String str = "25/08/2012";
SimpleDateFormat sdf3 = new SimpleDateFormat("yyyy/MM/dd");
SimpleDateFormat sdf4 = new SimpleDateFormat("yyyy tahun MM bulan hari hh");
mencoba {
Sistem.keluar.println(sdf4.format(sdf3.parse(str)));
} tangkapan (ParseException e) {
// TODO Blok tangkapan yang dibuat secara otomatis
e.printStackTrace();
}
Keluaran: 25 Agustus 2012