[Solved] How to format the given date “31.12.9999” in the format “yyyy/MM/dd HH:mm:ss”


Please try below i mentioned date format code,I hope it will help you,

From this,

String inputDate = "31.12.9999";
SimpleDateFormat dateFormatter = new SimpleDateFormat("yyyy.MM.dd HH:mm:ss");
Date toDate = dateFormatter.parse(inputDate);

To Change:

Date date = new SimpleDateFormat("dd.MM.yyyy").parse("31.12.9999");
String formattedDate = new SimpleDateFormat("yyyy.MM.dd HH:mm:ss").format(date);
System.out.println("formattedDate  :: " + formattedDate); 

Thanks,.

2

solved How to format the given date “31.12.9999” in the format “yyyy/MM/dd HH:mm:ss”