Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- import java.util.*;
- import java.text.*;
- public class date
- {
- public String getTanggal(){
- Date dNow = new Date();
- SimpleDateFormat ft = new SimpleDateFormat("E, dd.MM.yyyy hh:mm:ss a");
- return ft.format(dNow);
- }
- }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement