This notebook is a collection of code snippets and technical "how to" instructions.
public static Date incrementHours(Date date, int hours) { GregorianCalendar calendar = new GregorianCalendar(); calendar.setTime(date); calendar.add(Calendar.HOUR_OF_DAY, hours); return calendar.getTime(); }
No comments:
Post a Comment