Usa java.text.SimpleDateFormat
e java.util.TimeZone
In quale fuso orario si trova la stringa della data? Sostituisci il seguente UTC
fuso orario con quel fuso orario
SimpleDateFormat sdf = new SimpleDateFormat("yyyy-MM-dd HH:mm:ss");
sdf.setTimeZone(TimeZone.getTimeZone("UTC"));
Date date = sdf.parse("2014-02-15 05:18:08");
SimpleDateFormat sdf2 = new SimpleDateFormat("dd-MM-yyyy hh:mm:ss a");
sdf2.setTimeZone(TimeZone.getTimeZone("IST"));
String dateStr = sdf2.format(date); // Output: 15-02-2014 10:48:08 AM
Nota: In quale formato si trova l'ora (24 ore/12 ore) nella stringa di input? L'esempio sopra presuppone che sia nel formato 24 ore perché non ci sono informazioni AM/PM nella stringa di input.
Se anche la stringa di input è in formato 12 ore, la stringa di input dovrebbe includere informazioni AM/PM anche come 2014-02-15 05:18:08 PM
. In tal caso, modifica il sdf
a new SimpleDateFormat("yyyy-MM-dd hh:mm:ss a")
==========================Modificato: ======================
Per rispondere alla tua prossima domanda nel commento "Come estrarre data e ora separatamente"...
SimpleDateFormat sdfDate = new SimpleDateFormat("dd-MM-yyyy");
sdfDate.setTimeZone(java.util.TimeZone.getTimeZone("IST"));
SimpleDateFormat sdfTime = new SimpleDateFormat("hh:mm:ss a");
sdfTime.setTimeZone(java.util.TimeZone.getTimeZone("IST"));
String dateStr = sdfDate.format(date);
String timeStr = sdfTime.format(date);