0
javaで時間を解析すると、文字列引数として "12:12"が渡されます。"Thu Jan 01 12:12:00 IST 1970"が出力されます。日付形式の問題
"Fri Mar 09 12:12:00 IST 2012"を出力します。
String timestr = "12:12";
Date convertedDate = null;
try {
SimpleDateFormat dateFormat = new SimpleDateFormat("HH:mm");
convertedDate = dateFormat.parse(timestr);
} catch (ParseException e) {
e.printStackTrace();
}
System.out.println(convertedDate);
ありがとう!
ご質問を受け入れてください。 – epoch