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); } }