位置:首页 > Java技术 > java实例在线教程 > Java在不同国家显示时间的格式

Java在不同国家显示时间的格式

如何在不同的国家的格式显示时间?

解决方法

下面的示例使用Locale类和DateFormat类在不同国家的格式显示日期。

import java.text.DateFormat;
import java.util.*;

public class Main {
   public static void main(String[] args) throws Exception {
      Date d1 = new Date();
      System.out.println("today is "+ d1.toString());    
      Locale locItalian = new Locale("it","ch");
      DateFormat df = DateFormat.getDateInstance
      (DateFormat.FULL, locItalian);
      System.out.println("today is in Italian Language 
      in Switzerland Format : "+ df.format(d1));
   }
}

结果

上面的代码示例将产生以下结果。

today is Mon Jun 22 02:37:06 IST 2009
today is in Italian Language in Switzerland Format : sabato, 22. febbraio 2014