Hi all, I have the following Daylight Savings Time problem: I have one system that I want to run for 24 hours (exactly!). Assume that I am on the date: 28th March 2009 15:00 (DST change in Europe). If I am doing something like this: Date date = new Date(); Calendar c = Calendar.getInstance(); c.set(date.getYear(), date.getMonth(), date.getDay(), date.getHours(), date.getMinutes(), date.getSeconds()); c.add(Calendar.HOUR, ...