I try to convert String to Date.
Here is my code:
SimpleDateFormat format = new SimpleDateFormat(\"EEE MMM dd HH:mm:ss zzz yyyy\"); Date da
Either the code you posted is not your actual code, or you have a locale issue. It works fine on Sun Oracle Java 1.6 with a US locale.
Change your code to:
SimpleDateFormat format = new SimpleDateFormat("EEE MMM dd HH:mm:ss zzz yyyy", Locale.US);