跟个白痴似的,那个add(),会了。
就是一个日期加上若干时间,得出另一个日期会了。
但是如果是2个日期就中间所差的天数又遇到问题。。。
我是这么做的。但是不知道为什么得出来始终是1天,是方法用错了还是什么就不知道。
import javax.swing.*;
import java.text.SimpleDateFormat;
import java.util.*;
public class HM3
{
public static void main(String[] args)
{
SimpleDateFormat df = new SimpleDateFormat("yyyy MM dd");
Date d = null;
Calendar c = new GregorianCalendar();
Calendar cc = new GregorianCalendar();
String fore = JOptionPane.showInputDialog(null,
"请输入被减日期(请以空格格开)");
String step = JOptionPane.showInputDialog(null,
"请输入最后日期(请以空格格开)");
try
{
d = df.parse(fore);
c.setTime(d);
}
catch(Exception e)
{
e.printStackTrace();
}
JOptionPane.showMessageDialog(null,df.format(c.getTime()));
try
{
d = df.parse(step);
cc.setTime(d);
}
catch(Exception e)
{
e.printStackTrace();
}
JOptionPane.showMessageDialog(null,df.format(cc.getTime()));
JOptionPane.showMessageDialog(null," " +cc.compareTo(c));
}
}
[此贴子已经被作者于2007-3-2 22:22:44编辑过]