SimpleDateFormat formato =new SimpleDateFormat("HH:mm:ss");
Calendar cal = Calendar.getInstance();
String fecha11 = String.valueOf(formato.format(cal.getTime()));
Locale locale = new Locale("es", "ES");
SimpleDateFormat format = new SimpleDateFormat("HH:MM:ss", locale);
String fecha22 = String.valueOf(format.format(cal.getTime()));
結果: 14:06:12 (私のデバイスでは同じ時間) 14:16:55 (Locale("es", "ES") を使用)
はい、私はスペインにいます (Bcn) ¬¬' 誰かが理由を説明してくれませんか?? 次の質問ですが、Locale を他の国に変更するとどうなりますか?
ありがとう、
アレックス