java

关注公众号 jb51net

关闭
首页 > 软件编程 > java > Java时间类型转换

Java中实现时间类型转换的代码详解

作者:爱打羽球的码猿

这篇文章主要为大家详细介绍了Java中实现时间类型转换的相关方法,文中的示例代码讲解详细,具有一定的借鉴价值,有需要的小伙伴可以参考下

一、时间类型转换代码示例

示例代码如下:

package com.lyp;
import java.text.ParseException;
import java.text.SimpleDateFormat;
import java.util.Date;
import java.util.Locale;
import java.util.TimeZone;
public class dateFormat {
    public static void main(String[] args) throws ParseException {
        //时间格式转换
        dateToString();         //时间类型转换字符串
        stringToDate();         //字符串转换时间类型
        cstToDate();            //CST格式字符串转换时间类型
        cstToGmt();             //CST时间类型转换GMT格式字符串
        gmtToString();          //GMT格式字符串转换常规字符串
        timeMillisToString();   //时间戳转换字符串
        stringToTimeMillis();   //字符串转换时间戳
        timeMillisToDate();     //时间戳转化时间格式
        dateToTimeMillis();     //时间格式转化时间戳
    }
    public static void dateToString() {
        SimpleDateFormat dateFormat = new SimpleDateFormat("yyyy-MM-dd HH:mm:ss");
        Date date = new Date();
        String dateStr = dateFormat.format(date);
        System.out.println("时间类型转换字符串:"+date+" --> "+dateStr);
    }
    public static void stringToDate() throws ParseException {
        SimpleDateFormat dateFormat = new SimpleDateFormat("yyyy-MM-dd HH:mm:ss");
        String dateStr = "2022-10-14 15:08:33";
        Date date = dateFormat.parse(dateStr);
        System.out.println("字符串转换时间类型:"+dateStr+" --> "+date);
    }
    public static void cstToDate() throws ParseException {
        SimpleDateFormat dateFormat = new SimpleDateFormat("EEE MMM dd HH:mm:ss zzz yyyy", Locale.US);//注意使用Locale.US参数
        String cstStr = "Tue May 16 19:30:20 CST 2022";
        Date date = dateFormat.parse(cstStr);
        System.out.println("CST格式字符串转换时间类型:"+cstStr+" --> "+date);
    }
    public static void cstToGmt() {
        Date date = new Date();//默认为CST格式时间
        SimpleDateFormat dateFormat = new SimpleDateFormat("EEE MMM dd HH:mm:ss 'GMT+0800' yyyy", Locale.ENGLISH);
        String gmtStr = dateFormat.format(date);
        System.out.println("CST时间类型转换GMT格式字符串: "+date+" --> "+gmtStr);
    }
    public static void gmtToString() throws ParseException {
        String gmtStr = "Sun Oct 2 00:00:00 GMT+0800 2022";
        SimpleDateFormat dateFormat = new SimpleDateFormat("EEE MMM dd HH:mm:ss 'GMT+0800' yyyy", Locale.ENGLISH);
        SimpleDateFormat dateFormat2 = new SimpleDateFormat("yyyy-MM-dd HH:mm:ss");
        dateFormat.setTimeZone(TimeZone.getTimeZone("GMT"));
        Date date = dateFormat.parse(gmtStr);
        String dateStr = dateFormat2.format(date);
        System.out.println("GMT格式字符串转换常规字符串:"+gmtStr+" --> "+date+" --> "+dateStr);
    }
    public static void timeMillisToString() {
        Long time = System.currentTimeMillis();
        SimpleDateFormat dateFormat = new SimpleDateFormat("yyyy-MM-dd HH:mm:ss");
        String dateStr = dateFormat.format(new Date(time));
        System.out.println("时间戳转换字符串: "+time+" --> "+dateStr);
    }
    public static void stringToTimeMillis() throws ParseException {
        String dateStr = "2022-10-19 14:48:13";
        SimpleDateFormat dateFormat = new SimpleDateFormat("yyyy-MM-dd HH:mm:ss");
        Long time = dateFormat.parse(dateStr).getTime();
        System.out.println("字符串转换时间戳: "+dateStr+" --> "+time);
    }
    public static void timeMillisToDate() {
        Long time = System.currentTimeMillis();
        Date date = new Date(time);
        System.out.println("时间戳转换时间类型: "+time+" --> "+date);
    }
    public static void dateToTimeMillis() {
        Date date = new Date();
        Long time = date.getTime();
        System.out.println("时间格式转化时间戳: "+date+" --> "+time);
    }
}

运行结果如下:

二、时间标准简介

简介参考链接:详解Java中的时间处理与时间标准

1、UTC(世界标准时间)

协调世界时,又称世界标准时间或世界协调时间,简称UTC(从英文“Coordinated Universal Time”/法文“TempsUniversel Coordonné”而来),是最主要的世界时间标准,其以原子时秒长为基础,在时刻上尽量接近于格林尼治标准时间。

2、GMT(格林尼治平时)

格林尼治平时(又称格林尼治平均时间或格林尼治标准时间,旧译格林威治标准时间;英语:Greenwich MeanTime,GMT)是指位于英国伦敦郊区的皇家格林尼治天文台的标准时间,因为本初子午线被定义在通过那里的经线。

理论上来说,格林尼治标准时间的正午是指当太阳横穿格林尼治子午线时(也就是在格林尼治上空最高点时)的时间。由于地球在它的椭圆轨道里的运动速度不均匀,这个时刻可能与实际的太阳时有误差,最大误差达16分钟。由于地球每天的自转是有些不规则的,而且正在缓慢减速,因此格林尼治时间已经不再被作为标准时间使用。现在的标准时间,是由原子钟报时的协调世界时(UTC)。

3、CST(北京时间)

北京时间,China Standard Time,中国标准时间。在时区划分上,属东八区,比协调世界时早8小时,记为UTC+8。

不过这个CST这个缩写比较纠结的是它可以同时代表四个不同的时间: Central Standard Time (USA) UT-6:00Central Standard Time (Australia) UT+9:30 China Standard Time UT+8:00Cuba Standard Time UT-4:00

三、SimpleDateFormat 参数对照表

字母时间类型示例
GEra 标志符TextAD
y年份Number1996; 96
M年份中的月份TextJuly; Jul; 07
w年份中的周数Number27
W月份中的周数Number2
D年份中的天数Number189
d月份中的天数Number10
F月份中的星期Number2
E星期中的天数TextTuesday; Tue
aAm/pm 标记TextPM
H一天中的小时数(0-23)Number0
k一天中的小时数(1-24)Number24
Kam/pm 中的小时数(0-11)Number0
ham/pm 中的小时数(1-12)Number12
m小时中的分钟数Number30
s分钟中的秒数Number55
S毫秒数Number978
z时区General time zonePacific Standard Time; PST; GMT-08:00
Z时区RFC 822 time zone-0800

以上就是Java中实现时间类型转换的代码详解的详细内容,更多关于Java时间类型转换的资料请关注脚本之家其它相关文章!

您可能感兴趣的文章:
阅读全文