• JAVA日期时间


    import java.text.ParseException;
    import java.text.SimpleDateFormat;
    import java.util.Date;
    
    public class Date {
        
        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 = "2016-9-1 9:9:9";
            SimpleDateFormat sdf = new SimpleDateFormat("yyyy-MM-dd HH:mm:ss");
            
            // 调用parse()方法,将字符串转换为日期
            Date date = sdf.parse(d);
            
            System.out.println(date);
        }
    }
    import java.text.SimpleDateFormat;
    import java.util.Calendar;
    import java.util.Date;
    
    public class HelloWorld {
        
        public static void main(String[] args) {
            // 创建Canlendar对象
            Calendar c = Calendar.getInstance();
            
            // 将Calendar对象转换为Date对象
            Date date = c.getTime();
            Long time = c.getTimeInMillis();
    
            // 创建SimpleDateFormat对象,指定目标格式
            SimpleDateFormat sdf = new SimpleDateFormat("yyyy-MM-dd HH:mm:ss");
            
            // 将日期转换为指定格式的字符串
            String now = sdf.format(date);
            System.out.println("当前时间:" + now);
            System.out.println("当前毫秒:" + time);
        }
    }
  • 相关阅读:
    第01组 每周小结(3/3)
    第01组 每周小结(2/3)
    第01组 每周小结 (1/3)
    第01组 Beta冲刺总结
    第01组 Beta冲刺 (5/5)
    第01组 beta冲刺(4/5)
    第01组 beta冲刺(3/5)
    第01组 beta冲刺(2/5)
    第01组 Beta冲刺(1/5)
    latex Illegal, another ibstyle command
  • 原文地址:https://www.cnblogs.com/acmwangpeng/p/5818139.html
Copyright © 2020-2023  润新知