I have some string with date format such as
Sat Aug 15 13:53:41 MYT 2015
I use SimpleDateFormate and tried to convert the String type into Date type. It converted the String type into Date type, however, the timezone "MYT" is not recognized by Java and instead it was set to the default timezone of my computer i.e. "CST". I need the time zone to be record in the Date object. How could I do it?