0

I am using jDateChooser plugin on netbeans. When application starts it throws nullpointerException but when I choose date it works fine. The one and only one problem is it throws exception at runtime. Following is my code where I am getting exception:

String startDate=new SimpleDateFormat("yyyy-MM-dd").format(filterByStartDateChooser.getDate())

Note: I am using netbeans gui to design form.

Please solve my issue.Thanks

Yubaraj
  • 3,800
  • 7
  • 39
  • 57

2 Answers2

1
   String startDate = null;
  if(filterByStartDateChooser.getDate()!=null )
         startDate = new SimpleDateFormat("yyyy-MM-dd").format(dateFromDateChooser.getDate());
  if(startDate !=null){
            --------------
            ---------------
  }
Prabhakaran Ramaswamy
  • 25,706
  • 10
  • 57
  • 64
1

This might happen during initialisation. some function or actionlistener might want to read out the jdatechooser while it has no date set. to avoid this, simply add

jDateChooser.setCalendar(Calendar.getInstance());

after creatign your jDatechooser.

Fry
  • 146
  • 4