Код: Выделить всё
ZoneId z = ZoneId.of( "Africa/Nairobi" );
Instant instant = Instant.now();
ZonedDateTime zdt = instant.atZone(z);
return zdt.toString();
//2018-03-19T09:03:22.858+03:00[Africa/Nairobi]
Поля Chrono не извлекают полную дату.
Подробнее здесь: https://stackoverflow.com/questions/493 ... rated-date