这是我第一次问,我在所有的互联网上找不到解释,所以你走了: 我正在编写一个简单的函数来计算x天前的日期,所以我编写的代码工作得很好,直到今天,计算的过去日期是未来1年,但不是所有的值,只有11天前,其余的都没问题。 如果您今天执行此代码,您将获得此输出:you can execute it here
差:-11
2015年12月28日
差:-12
2014年12月27日
正如你所看到的,我虽然这是一个从Calendar到Date解析的问题,但我也检查过Calendar中的值是完全正常的,但是当我转移到Date它不起作用时,我试图手动执行此操作但不推荐使用这些功能。
import java.util.*;
import java.lang.*;
import java.io.*;
import java.text.DateFormat;
import java.text.SimpleDateFormat;
import java.util.Calendar;
/* Name of the class has to be "Main" only if the class is public. */
class Ideone
{
public static void main (String[] args) throws java.lang.Exception
{
System.out.println(getDate(-11, "YYYY-MM-dd"));
System.out.println(getDate(-12, "YYYY-MM-dd"));
}
public static String getDate(int offset, String SimpleFormat) {
DateFormat dateFormat = new SimpleDateFormat(SimpleFormat);
Calendar cal = Calendar.getInstance();
cal.setTime(new Date());
cal.add(Calendar.DATE, offset);
Date todate1 = cal.getTime();
long diff = todate1.getTime()-(new Date()).getTime();
System.out.println("difference:"+diff/ (24 * 60 * 60 * 1000));
String fromdate = dateFormat.format(todate1);
return fromdate;
}
}
后来我发现了一个名为Joda-Time的漂亮的库非常好用,所以我更改了代码以便使用它,但同样的问题让我感到惊讶。
DateFormat dateFormat = new SimpleDateFormat(SimpleFormat);
DateTime today = new DateTime();
String fromdate = dateFormat.format(today.plus(Period.days(offset)).toDate());
到目前为止,我还检查了增加350天左右的时间,在这11天内它也给出了错误的日期。 我知道我可以使用Joda-time格式化程序,但我仍然找不到确切的问题,任何帮助都会很好:)
(对于曾经遇到此问题的人):
DateTimeFormatter fmt = DateTimeFormat.forPattern(SimpleFormat);
答案 0 :(得分:6)