Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I am getting parse exception when i execute the below code.Can anyone please help me out

private Boolean validateDateFormat(HttpSession session, PropertiesHandler props, String startDate,Date sqlDate) {
        logger.info("Enter validate");
        Boolean isvalid = true;
        HashMap hashMap = new LinkedHashMap();
        System.out.println("Entered validate block");
         if (startDate == null || startDate.equals("")) {
            isvalid = false;
            hashMap.put("date", props.getText("error.date.compare.cannotbeblank"));
            session.setAttribute("errorMessage", hashMap);
            System.out.println("Map size " + hashMap.size());
            logger.info("Exit validate");
            return isvalid;
        }

        ArrayList<CalendarDatepicker> calList = new ArrayList<CalendarDatepicker>();
        String whereClause = " cd.calendar_datepicker="+sqlDate;
        calList = (ArrayList<CalendarDatepicker>)dateTimePickerImpl.getCalendarDateDetailsByWhereClause(whereClause);
        System.out.append("appointment list size " + calList.size());
        if(calList.isEmpty())
        {
            isvalid=false;
            System.out.println("here");
           hashMap.put("date", props.getText("error.date.compare.incorrectformat"));
            session.setAttribute("errorMessage", hashMap);
            System.out.println("Map size " + hashMap.size());
            logger.info("Exit validate");
            return isvalid;  
        }
share|improve this question
line no, exception message. – Jigar Joshi Oct 27 '10 at 15:50
What input is it choking on? – Oded Oct 27 '10 at 15:53
snapbuzz.com/image/17694 – helpermethod Oct 27 '10 at 15:53
actually i m doing validation for date in which it should not take 10/32/1010 this kind of date.I m actually taking the dates from date picker but we can alter the dates manually after being populated. – yopirates Oct 27 '10 at 16:00
its giving null pointer exception and parse exception if i give 10/00/2010 or 10/32/2010 – yopirates Oct 27 '10 at 16:01

1 Answer

You mentioned in the last comment : its giving null pointer exception and parse exception if i give 10/00/2010 or 10/32/2010.

Well ... of course it is. It is giving you an Unparsable Date exception because neither 10/00/1010 nor 10/32/2010 are valid dates.

Were exactly are you parsing the date? You should try surrounding it in a try-catch block:

try {
    // parse date here
} catch (ParseException e) {
    // handle what do to on parse exception here
}

You can choose to set a default date (e.g. the middle of the month) when catching an unparsable date, or log an error, etc.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.