Advertisement
Timur69

Data

Mar 31st, 2020
90
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Java 0.38 KB | None | 0 0
  1. package Tasks2;
  2.  
  3. import javafx.scene.input.DataFormat;
  4.  
  5. import java.text.DateFormat;
  6. import java.text.SimpleDateFormat;
  7. import java.util.Date;
  8.  
  9. public class Time {
  10.     public static void main(String[] args) {
  11.         DateFormat dateFormat = new SimpleDateFormat("yyyy/MM/dd HH:mm:ss");
  12.         Date date = new Date();
  13.         System.out.println(dateFormat.format(date));
  14.     }
  15. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement