Problem Description: How to display time in different country’s format? Solution: Following…
Problem Description:
How to display time in different country’s format?
Solution:
Following example uses Locale class & DateFormat class to display date in different Country’s format.
import java.text.DateFormat; import java.util.*; publicclassMain{ publicstaticvoid main(String[] args)throwsException{ Date d1=newDate(); System.out.println(“today is “+ d1.toString()); Locale locItalian=newLocale(“it”,”ch”); DateFormat df=DateFormat.getDateInstance (DateFormat.FULL, locItalian); System.out.println(“today is in Italian Language in Switzerland Format : “+ df.format(d1)); } }Result:
The above code sample will produce the following result.
today is Mon Jun 22 02:37:06 IST 2009 today is in Italian Language in Switzerland Format : sabato, 22. febbraio 2014
