时间格式转换 SimpleDateFormat

本文介绍了Java中SimpleDateFormat类的format和parse方法,用于时间格式化和字符串转日期。示例代码展示了如何将当前时间转换为指定格式的字符串,以及如何将字符串转换回日期对象。通过这两个方法,可以方便地在日期对象和字符串之间进行转换。
摘要由CSDN通过智能技术生成

SimpleDateFormat  format()方法 将时间转化为已定义格式

                                parase()方法 将string字符串转换为时间格式

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

/**
 * 时间格式转换 SimpleDateFormat
 */

public class UtilDate {
    public static void main(String[] args) throws ParseException {
        //初始化时间对象,为系统当前时间
        Date date = new Date();
        //使用SimpleDateFormat.format()格式化日期
        SimpleDateFormat format = new SimpleDateFormat("yyyy-MM-dd : a hh:mm:ss");
        //将格式化后的日期存储在自定义的变量thisTime中
        String thisTime = format.format(date);
        System.out.println("当前时间:" + thisTime);

        //定义一个string类型的时间
        String s = "2021-09-26 : 下午 03:00:04";
        try {
            //使用SimpleDateTime.parse()将string字符串转换为日期格式
            Date stringTime = format.parse(s);
            String date2 = format.format(stringTime);
            System.out.println("String类型转换存储时间格式为:" + stringTime);
            System.out.println("String类型转换时间:" +date2);
        }catch (Exception e){
            throw e;
        }


    }
}

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值