Answers for "simpledateformat example in java"

2

how to format ddmmmyyyy to ddmmyy in java

SimpleDateFormat format1 = new SimpleDateFormat("MM/dd/yyyy");
    SimpleDateFormat format2 = new SimpleDateFormat("dd-MMM-yy");
    Date date = format1.parse("05/01/1999");
    System.out.println(format2.format(date));
Posted by: Guest on August-11-2020
4

java simpledateformat example

String pattern = "yyyy-MM-dd";
SimpleDateFormat simpleDateFormat = new SimpleDateFormat(pattern);

String date = simpleDateFormat.format(new Date());
System.out.println(date);
Posted by: Guest on April-12-2020
0

java simpledateformat example

String pattern = "yyyy-MM-dd";
SimpleDateFormat simpleDateFormat = new SimpleDateFormat(pattern);
Posted by: Guest on May-25-2021

Code answers related to "simpledateformat example in java"

Code answers related to "Java"

Java Answers by Framework

Browse Popular Code Answers by Language