Answers for "show the current date in android"

2

how to get current date time in android

SimpleDateFormat sdf = new SimpleDateFormat("ddMMyyyy_HHmmss", Locale.getDefault());
                String currentDateandTime = sdf.format(new Date());
                System.out.println("currentDateandTime" + currentDateandTime);
Posted by: Guest on February-26-2021

Code answers related to "show the current date in android"

Code answers related to "Java"

Java Answers by Framework

Browse Popular Code Answers by Language