I need to change de format of a date to UTC format.
File file = new File();
...
file.lastModified();
I need to convert the lastModified date of a file in UTC format.
String lv_dateFormateInUTC=""; //Will hold the final converted date SimpleDateFormat lv_formatter = new SimpleDateFormat(); lv_formatter.setTimeZone(TimeZone.getTimeZone("UTC")); lv_dateFormateInUTC = lv_formatter.format(lv_localDate);
Something like that...!!
2.1m questions
2.1m answers
60 comments
57.0k users