Advertisement
Guest User

Date

a guest
Dec 14th, 2017
293
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Java 0.24 KB | None | 0 0
  1. import java.util.*;
  2. import java.text.*;
  3. public class date
  4. {
  5.    public String getTanggal(){
  6.        Date dNow = new Date();
  7.        SimpleDateFormat ft = new SimpleDateFormat("E, dd.MM.yyyy   hh:mm:ss a");
  8.        return ft.format(dNow);
  9.    }
  10. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement