I'm parsing an xml file with SAXParser and inside the handler I'm creating objects with one of the datamembers being the date.
The date on my XML file is in this format: 2010-12-28.
I can't find how to turn a string like that into a Date object though. And I also don't understand how to store it in a SQLite database, because there seem to be many formats (ones with hour/minutes/etc.)
And I need it stored in an object so I can calculate timespans etc.
Can someone help me with this?