The following example demonstrates how to use the format(date) method of the SimpleDateFormat class to format time
/* author by w3cschool.cc 文件名:Main.java */import java.text.SimpleDateFormat;import java.util.Date;public class Main{ public static void main(String[] args){ Date date = new Date(); String strDateFormat = "yyyy-MM-dd HH:mm:ss"; SimpleDateFormat sdf = new SimpleDateFormat(strDateFormat); System.out.println(sdf.format(date)); }}
The output result of running the above code is:
2015-03-27 21:13:23
The above is the Java example - Formatting time (SimpleDateFormat) content, please pay attention to the PHP Chinese website (www.php.cn) for more related content!