I tried to use date variable and show on console using format but it shows Thai. How can I force it to show English?
Date dNow = new Date();
SimpleDateFormat ft = new SimpleDateFormat ("E M y 'at' hh:mm:ss");
System.out.println(ft.format(dNow));
The result is
พ. 12 2558 at 09:06:32
ps. expected result
Thursday 12 2015 at 09:06:32
I have tried this way but it doesn't work. How to set eclipse console locale/language