をに変換したいString
のですDate
が、次の例外が発生します。
java.text.ParseException: Unparseable date: "Thu Jan 27 14:47:58 CET 2011"
at java.text.DateFormat.parse(DateFormat.java:335)
at de.datev.boxi.Main.run(Main.java:36)
at com.crystaldecisions.sdk.plugin.desktop.program.internal.ProgramWrapper.main(ProgramWrapper.java:174)
文字列を日付にフォーマットするには、どのパラメータを使用する必要がありますか?
私のプログラムは次のようになります。
try {
SimpleDateFormat sdf = new SimpleDateFormat("EEE MMM dd HH:mm:ss z yyyy");
Date d1 = sdf.parse("Thu Jan 27 14:47:58 CET 2011");
System.out.println(d1);
} catch (ParseException ex) {
ex.printStackTrace();
}