Home > Enterprise >  Converat a String to Date or Calendar?
Converat a String to Date or Calendar?

Time:08-31

I need to create a Date or Calendar object from String. haven't found anything that can do this. anyone know of a solution? Thanks in advanced.

CodePudding user response:

You can try this DateFormat.parse(String)

  • Related