Source Code : New locales in Java 6

Java Is Open Source Programming Language You Can Download From Java and Java Libraries From http://www.oracle.com. Click Here to download
We provide this code related to title for you to solve your developing problem easily. Libraries which is import in this program you can download from http://www.oracle.com. Click Here or search from google with Libraries Name you get jar file related it

New locales in Java 6

 
/*
Language                  Country         Locale Identifier
Chinese (Simplified)      Singapore       zh_SG
English                   Malta           en_MT
English                   Philippines     en_PH
English                   Singapore       en_SG
Greek                     Cyprus          el_CY
Indonesian                Indonesia       in_ID
Japanese (Japanese calendar)  Japan       ja_JP_JP
Malay                     Malaysia        ms_MY
Maltese                   Malta           mt_MT
Spanish                   US              es_US
*/

import java.text.DateFormat;
import java.util.Calendar;
import java.util.Locale;

import javax.swing.JOptionPane;

public class JapaneseCalendar {
  public static void main(String[] args) {
    Locale japanese = new Locale("ja", "JP", "JP");

    Calendar cal = Calendar.getInstance(japanese);
    DateFormat df = DateFormat.getDateTimeInstance(DateFormat.FULL, DateFormat.FULL, japanese);
    String str = df.format(cal.getTime());

    JOptionPane.showMessageDialog(null, str);
  }
}

        

Thank with us