How to get arabic date when the user selected language is Arabic and date in english format when selected language is english in spring application ? I tried by setting the
Use Joda time or Java 8 Date time API. Following is the example of Java 8 API
if(language.equals("English")){ LocalDateTime now = LocalDateTime.now(); } else{ HijrahDate hijrahDate=HijrahDate.now(); }