Apparently, I\'m missing something fundamental. I\'m having a problem with formatting the value of a jspinner. I\'ve tried a couple different ways and keep receiving an error, d
You should use
String dosFrom = sdfDestination.format((Date) dateFrom.getValue());
The problem is that dateFrom actually returns the selected date, and Date.toString() doesn't return the date in the format you use.