博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
java Calendar 日期的加减
阅读量:6403 次
发布时间:2019-06-23

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

String t = "2015-10-31 09:54";        Calendar calendar = Calendar.getInstance();        calendar.setTime(dateFormat.parse(t));        Date date=calendar.getTime();          System.out.println(dateFormat.format(date));        // 输出为:2015-10-31 09:54                calendar.add(Calendar.MINUTE, 10);        date=calendar.getTime();          System.out.println(dateFormat.format(date));        // 输出为:2015-10-31 10:04                calendar.add(Calendar.HOUR_OF_DAY, 3);        date=calendar.getTime();          System.out.println(dateFormat.format(date));        // 输出为:2015-10-31 13:04                calendar.add(Calendar.MONTH, 4);        date=calendar.getTime();          System.out.println(dateFormat.format(date));        // 输出为:2016-02-29 13:04                calendar.add(Calendar.YEAR, -1);        date=calendar.getTime();          System.out.println(dateFormat.format(date));        // 输出为:2015-02-28 13:04                calendar.add(Calendar.DAY_OF_MONTH, 1);        date=calendar.getTime();          System.out.println(dateFormat.format(date));        // 输出为:2015-03-01 13:04                calendar.add(Calendar.DAY_OF_WEEK, 1);        date=calendar.getTime();          System.out.println(dateFormat.format(date));        // 输出为:2015-03-02 13:04                calendar.add(Calendar.DAY_OF_WEEK_IN_MONTH, 1);        date=calendar.getTime();          System.out.println(dateFormat.format(date));        // 输出为:2015-03-09 13:04                calendar.add(Calendar.DAY_OF_YEAR, 1);        date=calendar.getTime();          System.out.println(dateFormat.format(date));        // 输出为:2015-03-10 13:04

 

转载于:https://www.cnblogs.com/chenlong-50954265/p/4973700.html

你可能感兴趣的文章
想挖大数据价值,你得先“挖人”!
查看>>
core dump磁盘报警问题排查过程
查看>>
Nginx报 No input file specified. 的问题解决之路
查看>>
Design Pattern: Not Just Mixin Pattern
查看>>
Ubuntu14.04下安装Hadoop2.5.1 (单机模式)
查看>>
kettle入门与实战(视频教程)
查看>>
简单JNI使用demo
查看>>
框架开发管理流程图
查看>>
Java 容器 & 泛型:四、Colletions.sort 和 Arrays.sort 的算法
查看>>
GDB的两个技巧
查看>>
PHP MysqlND 简介
查看>>
iOS面试题
查看>>
使用JavaIO提供的API下载指定文件(image)
查看>>
Android给图像添加相框、圆形圆角显示图片、图像合成知识
查看>>
Cloudera Hadoop:CCAH、CCA、CCP
查看>>
通过资源编排快速的构建负载均衡(SLB)
查看>>
<秦时明月>---月光
查看>>
网站设计选择大于努力
查看>>
Java设计模式(十七)----责任链模式
查看>>
psycopg2 postgresql driver for python don't support prepared statement Direct
查看>>