List Locales from Locale.getAvailableLocales() : Locale « I18N « Java






List Locales from Locale.getAvailableLocales()

List Locales from Locale.getAvailableLocales()
     
/*
 * Copyright (c) Ian F. Darwin, http://www.darwinsys.com/, 1996-2002. All rights
 * reserved. Software written by Ian F. Darwin and others. $Id: LICENSE,v 1.8
 * 2004/02/09 03:33:38 ian Exp $
 * 
 * Redistribution and use in source and binary forms, with or without
 * modification, are permitted provided that the following conditions are met:
 * 1. Redistributions of source code must retain the above copyright notice,
 * this list of conditions and the following disclaimer. 2. Redistributions in
 * binary form must reproduce the above copyright notice, this list of
 * conditions and the following disclaimer in the documentation and/or other
 * materials provided with the distribution.
 * 
 * THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND ANY
 * EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
 * WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
 * DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE FOR ANY
 * DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
 * (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
 * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND
 * ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
 * SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
 * 
 * Java, the Duke mascot, and all variants of Sun's Java "steaming coffee cup"
 * logo are trademarks of Sun Microsystems. Sun's, and James Gosling's,
 * pioneering role in inventing and promulgating (and standardizing) the Java
 * language and environment is gratefully acknowledged.
 * 
 * The pioneering role of Dennis Ritchie and Bjarne Stroustrup, of AT&T, for
 * inventing predecessor languages C and C++ is also gratefully acknowledged.
 */

import java.util.Locale;

public class ListLocales {
  public static void main(String[] args) {
    Locale[] ll = Locale.getAvailableLocales();
    for (int i = 0; i < ll.length; i++)
      System.out.println(ll[i]);
  }
}

           
         
    
    
    
    
  








Related examples in the same category

1.List all Locale from SimpleDateFormatList all Locale from SimpleDateFormat
2.Locale Constant
3.Country Language CodesCountry Language Codes
4.Get Days Of The Week for different localeGet Days Of The Week for different locale
5.Get Display Country for default localeGet Display Country for default locale
6.Get ISO3 Language for default localeGet ISO3 Language for default locale
7.Get Display Name for default localeGet Display Name for default locale
8.Get Display Variant for default localeGet Display Variant for default locale
9.Get the 2-letter country code; may be equal to ""
10.List Locale OrientationList Locale Orientation
11.Get localized name suitable for display to the user
12.Setting the Default Locale on the command line
13.Set language and country code on the command line
14.Change the default locale is to call Locale.setDefault():
15.Set the default locale to pre-defined locale
16.Set the default locale to custom locale
17.format date for a Locale
18.Get a list of country names
19.Set only language code on the command line
20.Set a default Locale
21.Disable localization
22.Set of convenience routines for internationalized code
23.Print the default locale
24.Change the default locale
25.iso639-2-language-code.csv
26.iso3166-country-codes.csv
27.Converts a String to a Locale
28.Converts the double value to locale-independent string representation
29.Calculate the postfix to append to a filename to load the correct single filename for that Locale.
30.Calculate the postfixes along the search path from the base bundle to the bundle specified by baseName and locale.
31.Concat postfix to the name. Take care of existing filename extension.
32.Convert a string based locale into a Locale Object
33.Obtains an unmodifiable set of installed locales.
34.Obtains the list of languages supported for a given country.
35.Obtains the list of locales to search through when performing a locale search.
36.Parse the given localeString into a java.util.Locale
37.Returns the parent locale of a given locale.
38.This program demonstrates collating strings under various locales.This program demonstrates collating strings under various locales.
39.This program demonstrates formatting dates under various locales.This program demonstrates formatting dates under various locales.
40.This program demonstrates formatting numbers under various locales.This program demonstrates formatting numbers under various locales.
41.Builds a Locale instance from the passed string.
42.Utility class providing methods to access the Locale of the current thread and to get Localised strings.