I want to create a DateTime String with format like 2013-08-30T15:06:00
using three strings.One String has Date "30-aug-2013"
and second string has time "15:06"
and last string has days value "2"
.Now I want to use these three Strings to create a Resulted string like "2013-08-28T15:06:00"
. The days value is to create date in past, so in this case the date changes from 30th aug to 28 aug
Solution I have tried:
public String getFormattedDate(String date, String selectedDays, String time) {
String dtStart = date;
SimpleDateFormat format = new SimpleDateFormat("dd-MM-yyyy");
try {
Date dateObject = format.parse(dtStart);
System.out.println(date);
Calendar calendar = new GregorianCalendar();
calendar.setTime(dateObject);
calendar.add(Calendar.DAY_OF_MONTH, Integer.valueOf(selectedDays));
System.out.println(calendar.getTime());
} catch (ParseException e) {
// TODO Auto-generated catch block
e.printStackTrace();
}
}
In above solution calendar.add
will add the days instead of removing days from date.Also I don't know how to use the time string to set it on the date Object.
If your time
String
is always in that format, you'll need to usetime.split(":")
to get the hours and minutes.You might want to specify the output format instead of using the
Locale
default format also.Add a minus sign to substract instead of adding for the
Calendar.add()
.Your code use
dd-MM-yyyy
but your month part is written,08-aug-2013
which should be parsed usingdd-MMM-yyyy
instead.This should output as you specified
For a good place to read about formatting symbols, check the bottom of this link, it's pretty well explained.
Calling
getFormattedDate("08-aug-2013", "2", "15:05");
with this code output2013-08-06T15:05
.Edit : I forgot the seconds, the output is now :
2013-08-06T15:05:00