如何在java简单日期格式中添加天数

how to add days to java simple date format(如何在java简单日期格式中添加天数)
本文介绍了如何在java简单日期格式中添加天数的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着跟版网的小编来一起学习吧!

问题描述

我应该如何将 120 天添加到我使用简单日期格式获得的当前日期?

How should I add 120 days to my current date which I got using simple date format?

我看过一些关于它的帖子,但无法让它发挥作用,

I have seen few posts about it but couldn't get it to work,

我的代码如下:

SimpleDateFormat dateFormat = new SimpleDateFormat("dd/MM/yyyy");
//get current date time with Date()
Date date = new Date();

我需要使用 Calendar 库还是只使用简单的日期格式?

Do I need to use the Calendar library or can I just do it with simple date format?

推荐答案

基本上,您可以简单地使用 Calendar,它能够根据更改自动滚动日期的各个字段例如单个字段...

Basically, you can simple use a Calendar which has the capacity to automatically roll the various fields of a date based on the changes to a single field, for example...

Calendar cal = Calendar.getInstance();
cal.setTime(date);
cal.add(Calendar.DATE, 120);
date = cal.getTime();

仔细查看 日历 了解更多详情.

Take a closer look at Calendar for more details.

是的,有一种使用 Joda Time 的方法,但我可以更快地输入这个示例;)

Yes, there is a way to do this using Joda Time, but I could type this example quicker ;)

更新 JodaTime 示例

以下是使用 JodaTime 的示例.您可以直接使用 JodaTime 解析 String 值,但既然您已经这样做了,我就不打扰了...

The following is an example using JodaTime. You could parse the String value directly using JodaTime, but since you've already done that, I've not bothered...

Date date = ...;
DateTime dt = new DateTime(date);
dt = dt.plusDays(120);
date = dt.toDate();

这篇关于如何在java简单日期格式中添加天数的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持跟版网!

本站部分内容来源互联网,如果有图片或者内容侵犯了您的权益,请联系我们,我们会在确认后第一时间进行删除!

相关文档推荐

Month is not printed from a date - Java DateFormat(月份不是从日期打印的 - Java DateFormat)
java get week of year for given a date(java获取给定日期的一年中的一周)
Get the number of days, weeks, and months, since Epoch in Java(获取自 Java 中的 Epoch 以来的天数、周数和月数)
Is there a good way to get the date of the coming Wednesday?(有什么好方法可以得到即将到来的星期三的日期吗?)
Calendar view for Android GingerBread and before (APIlt;11)(Android GingerBread 及之前的日历视图 (API11))
How to save and retrieve Date in SharedPreferences(如何在 SharedPreferences 中保存和检索日期)