import java.text.SimpleDateFormat; import java.util.Date; public class testDate { public String toDate(){ Date date = new Date(); SimpleDateFormat simple = new SimpleDateFormat("dd.MM.yyyy"); simple.format(date); String StringDate = simple.format(date); return StringDate; } public static void main(String args[]){ testDate test = new testDate(); System.out.println(test.toDate()); } }