How to convert String to Date object in java?
String to Date conversion is very critical when we have String of date and we need to use this as a Date object. Java have DateFormat and SimpleDateFormat objects which are helpful in parsing and formatting date or date text. Parsing means parsing [...]
How to add or substract days to current date using Java Calendar?
Lot of times we need to add or subtract the days from current date , in java.util.Calendar there is one more .add method using this we can add or subtract the days.
import java.util.Calendar;
public class AddSubstractDays {
public [...]
