Home  >  Article  >  Java  >  Java Example - Formatted Time (SimpleDateFormat)

Java Example - Formatted Time (SimpleDateFormat)

黄舟
黄舟Original
2017-02-18 09:49:461270browse

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!




Statement:
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn