If i have:
SimpleDateFormat dateFormat = new SimpleDateFormat("yyyy-MM-dd HH:mm:ss");
dateFormat.setTimeZone(TimeZone.getTimeZone("Europe/London"));
String dateStr = dateFormat.format(new Date());
System.out.println(dateStr);
The output will be: 2014-09-30 14:19:17 when my local time is 2014-09-30 16:19:17
I need to get Date type in specific timezone and not String Type!
My question is , how can i get new Date() on "Europe/London" timezone,