Код: Выделить всё
public String format(long epochTimeInMS, String timeZone) {
Date d = new Date(epochTimeInMS);
SimpleDateFormat formatter = new SimpleDateFormat("HH:mm z");
formatter.setTimeZone(TimeZone.getTimeZone(timeZone));
return formatter.format(date);
}
Подробнее здесь: https://stackoverflow.com/questions/787 ... ting-zones