/** To change this template, choose Tools | Templates * and open the template in the editor. */ Packagedatetest;Importjava.text.ParseException;ImportJava.text.SimpleDateFormat;Importjava.util.Date;ImportJava.util.logging.Level;ImportJava.util.logging.Logger;/** * * @authorAdmin*/ Public classDatetest { Public Static voidMain (string[] args) {//Convert date type to string, string as table name, guaranteed table name uniqueDate Now=NewDate (); SimpleDateFormat DateFormat=NewSimpleDateFormat ("Yyyymmddhhmmss"); String TableName=Dateformat.format (now); SYSTEM.OUT.PRINTLN (tablename); //to turn a string type into a date typeString mydate= "2014/2/2 17:02:12"; SimpleDateFormat SDF=NewSimpleDateFormat ("Yyyy/mm/dd HH:mm:ss"); Try{Date Date=Sdf.parse (mydate); } Catch(ParseException ex) {Logger.getlogger (datetest.class. GetName ()). log (Level.severe,NULL, ex); } }}
Java gets the current date and the date that the string is converted to the specified format