zoukankan      html  css  js  c++  java
  • java日期转化,三种基本的日期格式

    import java.text.ParseException;
    import java.text.SimpleDateFormat;
    import java.util.Date;
    
    public class HelloWorld {
        
        public static void main(String[] args) throws ParseException {
            
            // 使用format()方法将日期转换为指定格式的文本
            SimpleDateFormat sdf1 = new SimpleDateFormat("yyyy年MM月dd日 HH时mm分ss秒");
            SimpleDateFormat sdf2 = new SimpleDateFormat("yyyy/MM/dd HH:mm");
            SimpleDateFormat sdf3 = new SimpleDateFormat("yyyy-MM-dd HH:mm:ss");
            
            // 创建Date对象,表示当前时间
            Date now = new Date();
            
            // 调用format()方法,将日期转换为字符串并输出
            System.out.println(sdf1.format(now)                          );
            System.out.println(sdf2.format(now));
            System.out.println(sdf3.format(now));
    
            // 使用parse()方法将文本转换为日期
            String d = "2014-6-1 21:05:36";
            SimpleDateFormat sdf = new SimpleDateFormat("yyyy-MM-dd HH:mm:ss");
            
             // 调用parse()方法,将字符串转换为日期
            Date date = sdf.parse(d);
            
            System.out.println(date);
        }
    }
  • 相关阅读:
    设计模式之中介者模式
    解释器模式(行为模式)
    进程池Pool
    Process子类
    multiprocessing
    random
    re
    time和datetime
    logging 日志
    hashlib
  • 原文地址:https://www.cnblogs.com/horken/p/10706149.html
Copyright © 2011-2022 走看看