I use this pattern SimpleDateFormat format = new SimpleDateFormat(\"YYYY-MM-dd HH:mm:ss\"); in windows and it works, but when try on Ubuntu 10.04 it show an exc
SimpleDateFormat format = new SimpleDateFormat(\"YYYY-MM-dd HH:mm:ss\");
I search for SimpleDateFormat and got the doc from oracle.
Works in my windows because I set the default JRE to 1.7 but still running using JRE1.6 for the Play Framework.
Works on Windows because of this, JRE1.7 has added 'Y' pattern for Week year and in JRE1.6 there is no pattern for this.
Week year