public class DateTime {
public static java.util.LinkedList searchBetweenDates(java.util.Date startDate, java.util.Date endDate)
{
java.util.Date begin = new Date(startDate.getTime());
java.util.LinkedList list = new java.util.LinkedList();
list.add(new Date(begin.getTime()));
while(begin.compareTo(endDate)<0)
{
begin = new Date(begin.getTime() + 86400000);
list.add(new Date(begin.getTime()));
Timestamp timestamp = new Timestamp(new Date().getTime());
int total=3;
Calendar cal = Calendar.getInstance();
for(int d=0; d<=total; d++)
{
cal.add(Calendar.MINUTE, 2);
timestamp = new Timestamp(cal.getTime().getTime());
}
System.out.println(timestamp);
}
return list;
}
public static void main( String[] args )throws Exception
{
java.util.Scanner input = new java.util.Scanner(System.in);
System.out.println("Enter the Start Date: dd/mm/yyyy");
String begin = new String();
begin = input.nextLine();
System.out.println("Enter the End Date: dd/mm/yyyy");
String end = new String();
end = input.nextLine();
java.util.LinkedList hitList = searchBetweenDates(
new java.text.SimpleDateFormat("dd/MM/yyyy").parse(begin),
new java.text.SimpleDateFormat("dd/MM/yyyy").parse(end));
String[] comboDates = new String[hitList.size()];
for(int i=0; i<hitList.size(); i++)
comboDates[i] = new java.text.SimpleDateFormat("dd/MM/yyyy ").format(((java.util.Date)hitList.get(i)));
for(int i=0; i<comboDates.length; i++)
System.out.println(comboDates[i]);
input.close();
}
}
我想打印所选日期范围的时间戳而不是当前日期。对于 例如,如果我选择了日期范围从2016年1月1日到2016年1月5日,那么输出应该是这样的:
01/01/2016 12:02:01
12:04:45
till
11:59:00
02/01/2016 12:02:01
12:04:45
所有直到结束日期都相同。但是通过这段代码,我得到当前日期和当前时间戳,并且在所选日期范围之后的唯一日期不是时间戳。
答案 0 :(得分:1)
您只获取当前日期,因为Calendar
会将cal.setTime(begin)
对象设置为当前日期。因此,在该行之后,您需要使用begin = new Date(begin.getTime() + 86400000)
将时间设置为开始日期。
此外,打印时间戳必须在for循环中完成,否则只会打印当天的最后一个时间戳。
我假设您还希望将开始日期和结束日期打印为时间戳。为此,您必须将行endDate.setTime(endDate.getTime() + 24*3600*1000)
移动到while循环的末尾,否则您将跳过开始日期。通过这样做,您可能会看到不会打印结束日期。因此,您还将结束日期的时间设置为while循环之前的一天结束。
修改:要将结束日期的时间设置为当天结束,也会显示,请尝试使用dispatcher.forward(request, response);
。这样,日期将在未来移动一天,并且还将使用整个endDate。记得在while循环之前执行此操作。