a). I have 3 strings representing the date, time and timeZone; ex.:
String date = "2012-09-04";
String time = "01:30:17";
String timeZone = "UTC";
and I want to create a date using these strings.
SimpleDateFormat formatter = new SimpleDateFormat("yyyy-MM-dd HH:mm:ss z");
Date createdDate = formatter.parse(date + " " + time + " " + timeZone);
doesn't work - I get the message "Unparseable date".
b). How can I get the Android device date in a specific timeZone? I found just a way of converting current time to, for example, UTC timeZone:
Calendar cldr = Calendar.getInstance();
SimpleDateFormat sdf = new SimpleDateFormat("yyyy-MM-dd HH:mm:ss");
sdf.setTimeZone(TimeZone.getTimeZone("UTC"));
String dateInUTCTimeZone = sdf.format(cldr.getTime());
but I want the result to be a Date object.