博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
java转换日期格式为 RFC1123
阅读量:5844 次
发布时间:2019-06-18

本文共 1478 字,大约阅读时间需要 4 分钟。

import java.text.SimpleDateFormat;import java.util.Date;import java.util.Locale;import java.util.TimeZone;public class GmtDate {    public static void main(String[] args){                System.out.println(new Date());                //本地日期格式.        String rfc1123_1 = new SimpleDateFormat("EEE, dd MMM yyyy HH:mm:ss z",Locale.US).format(new Date());        System.out.println("rfc1123_1 = " + rfc1123_1);                //错误        String rfc1123_2 = new SimpleDateFormat("EEE, dd MMM yyyy HH:mm:ss 'GMT'",Locale.US).format(new Date());        System.out.println("rfc1123_2 = " + rfc1123_2);        //正确, 推荐使用.        SimpleDateFormat sdf3 = new SimpleDateFormat("EEE, dd MMM yyyy HH:mm:ss z",Locale.US);        sdf3.setTimeZone(TimeZone.getTimeZone("GMT"));        String rfc1123_3 = sdf3.format(new Date());        System.out.println("rfc1123_3 = "+rfc1123_3);                //正确.        SimpleDateFormat sdf4 = new SimpleDateFormat("EEE, dd MMM yyyy HH:mm:ss 'GMT'",Locale.US);        sdf4.setTimeZone(TimeZone.getTimeZone("GMT"));        String rfc1123_4 = sdf4.format(new Date());        System.out.println("rfc1123_4 = " + rfc1123_4);    }}

输出的结果

Tue Oct 30 15:33:48 CST 2018

rfc1123_1 = Tue, 30 Oct 2018 15:33:48 CST
rfc1123_2 = Tue, 30 Oct 2018 15:33:48 GMT
rfc1123_3 = Tue, 30 Oct 2018 07:33:48 GMT
rfc1123_4 = Tue, 30 Oct 2018 07:33:48 GMT

 ****************************************************

对应的命令

date=`env LANG="en_US.UTF-8" date -u "+%a, %d %b %Y %H:%M:%S GMT"`

 

转载地址:http://qemcx.baihongyu.com/

你可能感兴趣的文章
Ember.js 3.9.0-beta.3 发布,JavaScript Web 应用开发框架
查看>>
python标准库00 学习准备
查看>>
4.2. PHP crypt()
查看>>
Winform开发框架之附件管理应用
查看>>
软链接文件和硬链接文件
查看>>
Spring Cloud Config服务器
查看>>
commonservice-config配置服务搭建
查看>>
连接池的意义及阿里Druid
查看>>
ComponentOne 2019V1火热来袭!全面支持 Visual Studio 2019——亮点之WinForm篇
查看>>
全面的Spring Boot配置文件详解
查看>>
如何优雅地玩转分库分表
查看>>
Python递归函数与匿名函数
查看>>
我的友情链接
查看>>
CentOS添加永久静态路由
查看>>
mysql多实例的安装以及主从复制配置
查看>>
loadrunner安装运行一步一步来(多图)
查看>>
git请求报错 401
查看>>
动态追踪技术(四):基于 Linux bcc/BPF 实现 Go 程序动态追踪
查看>>
Cyber-Security: Linux 容器安全的十重境界
查看>>
监控工具htop的安装及使用
查看>>