Home > Blockchain >  Convert a String to Date or Calendar?
Convert 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?

CodePudding user response:

You can try this DateFormat.parse(String)

  • Related