Posted on December 10, 2013, 1:59 pm
The simply way to increase date time in java is to use Calendar. The code below use to increase the delivery date by 1.
private static final Integer _DELAI_LIVRAISON = 1;
Calendar lvr_date = Calendar.getInstance();
lvr_date.add(Calendar.DATE, _DELAI_LIVRAISON);