Convert Java Date to UTC String

前端 未结 7 501
予麋鹿
予麋鹿 2020-11-29 06:09

The java.util.Date toString() method displays the date in the local time zone.

There are several common scenarios where we want the data to be printed in

7条回答
  •  我在风中等你
    2020-11-29 06:13

    If XStream is a dependency, try:

    new com.thoughtworks.xstream.converters.basic.DateConverter().toString(date)
    

提交回复
热议问题