Answers for "read date integer then print it to dd.mm.yyyy string in java"

1

java date to string yyyy-mm-dd

java.util.Date date = new Date("Sat Dec 01 00:00:00 GMT 2012");
SimpleDateFormat formatter = new SimpleDateFormat("yyyy-MM-dd");
String format = formatter.format(date);
System.out.println(format);
Posted by: Guest on May-11-2021
0

program to check if the given date is in in the format dd/mm/yyyy java

//Using Regex
boolean checkFormat;

if (input.matches("([0-9]{2})/([0-9]{2})/([0-9]{4})"))
    checkFormat=true;
else
   checkFormat=false;
Posted by: Guest on May-13-2021

Code answers related to "read date integer then print it to dd.mm.yyyy string in java"

Code answers related to "Java"

Java Answers by Framework

Browse Popular Code Answers by Language