Home > Java > javaTutorial > body text

Java Example - Formatted Time (SimpleDateFormat)

黄舟
Release: 2017-02-18 09:49:46
Original
1275 people have browsed it

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));
   }}
Copy after login

The output result of running the above code is:

2015-03-27 21:13:23
Copy after login

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!




source:php.cn
Statement of this Website
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
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
About us Disclaimer Sitemap
php.cn:Public welfare online PHP training,Help PHP learners grow quickly!