Timezone conversion

后端 未结 12 1620
一向
一向 2020-11-22 11:25

I need to convert from one timezone to another timezone in my project.

I am able to convert from my current timezone to another but not from a different timezone to

12条回答
  •  我在风中等你
    2020-11-22 12:15

    You can do something like this to get the current time in another time zone.

    Calendar japanCal = new GregorianCalendar(TimeZone.getTimeZone("Japan"));
    japanCal.setTimeInMillis(local.getTimeInMillis());
    

提交回复
热议问题