教育行业A股IPO第一股(股票代码 003032)

全国咨询/投诉热线:400-618-4000

Java中,怎么在格式化的日期中显示时区?

更新时间:2023年10月09日10时25分 来源:传智教育 浏览次数:

好口碑IT培训

  在Java中,我们可以使用SimpleDateFormat类来格式化日期。要显示时区,我们可以在日期格式中添加z或Z。以下是一个示例:

import java.text.SimpleDateFormat;
import java.util.Date;

public class Main {
    public static void main(String[] args) {
        Date now = new Date();

        SimpleDateFormat sdf = new SimpleDateFormat("yyyy-MM-dd HH:mm:ss z");
        String formattedDate = sdf.format(now);

        System.out.println(formattedDate);
    }
}

  在这个示例中,我们创建了一个SimpleDateFormat对象,其中日期格式为"yyyy-MM-dd HH:mm:ss z"。这个格式会在日期和时间后面添加时区。例如,输出可能如下所示:

2023-03-19 10:20:30 EDT

  上面的输出表示日期和时间是2023年3月19日10点20分30秒,时区是EDT(美国东部时间)。

0 分享到:
和我们在线交谈!