fork download
  1. import java.time.ZoneId;
  2. import java.time.ZonedDateTime;
  3.  
  4. public class Main {
  5. public static void main(String[] args) {
  6. // Use the applicable ZoneId
  7. ZoneId zoneId = ZoneId.of("Asia/Dubai");
  8. ZonedDateTime now = ZonedDateTime.now(zoneId);
  9. System.out.println(now);
  10. }
  11. }
Success #stdin #stdout 0.12s 51968KB
stdin
Standard input is empty
stdout
2021-10-30T02:28:25.270500+04:00[Asia/Dubai]