String pickupdate = pdate.getText().toString().trim();
// String dateBefore = "25/10/2022";
// create instance of the SimpleDateFormat that matches the given date
SimpleDateFormat sdf = new SimpleDateFormat("MM-dd-yyyy");
//create instance of the Calendar class and set the date to the given date
Calendar cal = Calendar.getInstance();
try{
cal.setTime(sdf.parse(pickupdate));
}catch(ParseException e){
e.printStackTrace();
}
// use add() method to add the days to the given date
cal.add(Integer.parseInt(pickupdate), 2); // exception here
expirydate = sdf.format(cal.getTime());
// Toast.makeText(this, ""+expirydate+"", Toast.LENGTH_SHORT).show();
Above is the code where I am getting the pickup date from the user and trying to add 2 days to it using calender.add
method, but I'm getting error int: java.lang.NumberFormatException: For input string: "05-30-2022"
. It happens in the line cal.add(Integer.parseInt(pickupdate), 2);
. Can somebody body help me this regard?