当前位置: 首页>>代码示例>>Java>>正文


Java LocaleServiceProviderPool.getAvailableLocales方法代码示例

本文整理汇总了Java中sun.util.locale.provider.LocaleServiceProviderPool.getAvailableLocales方法的典型用法代码示例。如果您正苦于以下问题:Java LocaleServiceProviderPool.getAvailableLocales方法的具体用法?Java LocaleServiceProviderPool.getAvailableLocales怎么用?Java LocaleServiceProviderPool.getAvailableLocales使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在sun.util.locale.provider.LocaleServiceProviderPool的用法示例。


在下文中一共展示了LocaleServiceProviderPool.getAvailableLocales方法的7个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Java代码示例。

示例1: run

import sun.util.locale.provider.LocaleServiceProviderPool; //导入方法依赖的package包/类
public void run() {
    try {
        LocaleServiceProviderPool pool = LocaleServiceProviderPool.getPool(cls);
        pool.getAvailableLocales();
    } catch (Exception e) {
        System.out.println(e);
        e.printStackTrace();
        failed = true;
    }
}
 
开发者ID:lambdalab-mirror,项目名称:jdk8u-jdk,代码行数:11,代码来源:Bug6989440.java

示例2: getAvailableLocales

import sun.util.locale.provider.LocaleServiceProviderPool; //导入方法依赖的package包/类
/**
 * Returns an array of all locales for which the
 * <code>get*Instance</code> methods of this class can return
 * localized instances.
 * The returned array represents the union of locales supported by the Java
 * runtime and by installed
 * {@link java.text.spi.BreakIteratorProvider BreakIteratorProvider} implementations.
 * It must contain at least a <code>Locale</code>
 * instance equal to {@link java.util.Locale#US Locale.US}.
 *
 * @return An array of locales for which localized
 *         <code>BreakIterator</code> instances are available.
 */
public static synchronized Locale[] getAvailableLocales()
{
    LocaleServiceProviderPool pool =
        LocaleServiceProviderPool.getPool(BreakIteratorProvider.class);
    return pool.getAvailableLocales();
}
 
开发者ID:SunburstApps,项目名称:OpenJSharp,代码行数:20,代码来源:BreakIterator.java

示例3: getAvailableLocales

import sun.util.locale.provider.LocaleServiceProviderPool; //导入方法依赖的package包/类
/**
 * Returns an array of all locales for which the
 * <code>get*Instance</code> methods of this class can return
 * localized instances.
 * The returned array represents the union of locales supported by the Java
 * runtime and by installed
 * {@link java.text.spi.DateFormatProvider DateFormatProvider} implementations.
 * It must contain at least a <code>Locale</code> instance equal to
 * {@link java.util.Locale#US Locale.US}.
 *
 * @return An array of locales for which localized
 *         <code>DateFormat</code> instances are available.
 */
public static Locale[] getAvailableLocales()
{
    LocaleServiceProviderPool pool =
        LocaleServiceProviderPool.getPool(DateFormatProvider.class);
    return pool.getAvailableLocales();
}
 
开发者ID:SunburstApps,项目名称:OpenJSharp,代码行数:20,代码来源:DateFormat.java

示例4: getAvailableLocales

import sun.util.locale.provider.LocaleServiceProviderPool; //导入方法依赖的package包/类
/**
 * Returns an array of all locales for which the
 * <code>get*Instance</code> methods of this class can return
 * localized instances.
 * The returned array represents the union of locales supported by the Java
 * runtime and by installed
 * {@link java.text.spi.NumberFormatProvider NumberFormatProvider} implementations.
 * It must contain at least a <code>Locale</code> instance equal to
 * {@link java.util.Locale#US Locale.US}.
 *
 * @return An array of locales for which localized
 *         <code>NumberFormat</code> instances are available.
 */
public static Locale[] getAvailableLocales() {
    LocaleServiceProviderPool pool =
        LocaleServiceProviderPool.getPool(NumberFormatProvider.class);
    return pool.getAvailableLocales();
}
 
开发者ID:SunburstApps,项目名称:OpenJSharp,代码行数:19,代码来源:NumberFormat.java

示例5: getAvailableLocales

import sun.util.locale.provider.LocaleServiceProviderPool; //导入方法依赖的package包/类
/**
 * Returns an array of all locales for which the
 * <code>getInstance</code> methods of this class can return
 * localized instances.
 * The returned array represents the union of locales supported by the
 * Java runtime and by installed
 * {@link java.text.spi.DateFormatSymbolsProvider DateFormatSymbolsProvider}
 * implementations.  It must contain at least a <code>Locale</code>
 * instance equal to {@link java.util.Locale#US Locale.US}.
 *
 * @return An array of locales for which localized
 *         <code>DateFormatSymbols</code> instances are available.
 * @since 1.6
 */
public static Locale[] getAvailableLocales() {
    LocaleServiceProviderPool pool=
        LocaleServiceProviderPool.getPool(DateFormatSymbolsProvider.class);
    return pool.getAvailableLocales();
}
 
开发者ID:SunburstApps,项目名称:OpenJSharp,代码行数:20,代码来源:DateFormatSymbols.java

示例6: getAvailableLocales

import sun.util.locale.provider.LocaleServiceProviderPool; //导入方法依赖的package包/类
/**
 * Returns an array of all locales for which the
 * <code>getInstance</code> methods of this class can return
 * localized instances.
 * The returned array represents the union of locales supported by the Java
 * runtime and by installed
 * {@link java.text.spi.DecimalFormatSymbolsProvider DecimalFormatSymbolsProvider}
 * implementations.  It must contain at least a <code>Locale</code>
 * instance equal to {@link java.util.Locale#US Locale.US}.
 *
 * @return an array of locales for which localized
 *         <code>DecimalFormatSymbols</code> instances are available.
 * @since 1.6
 */
public static Locale[] getAvailableLocales() {
    LocaleServiceProviderPool pool =
        LocaleServiceProviderPool.getPool(DecimalFormatSymbolsProvider.class);
    return pool.getAvailableLocales();
}
 
开发者ID:SunburstApps,项目名称:OpenJSharp,代码行数:20,代码来源:DecimalFormatSymbols.java

示例7: getAvailableLocales

import sun.util.locale.provider.LocaleServiceProviderPool; //导入方法依赖的package包/类
/**
 * Returns an array of all locales for which the
 * <code>getInstance</code> methods of this class can return
 * localized instances.
 * The returned array represents the union of locales supported
 * by the Java runtime and by installed
 * {@link java.text.spi.CollatorProvider CollatorProvider} implementations.
 * It must contain at least a Locale instance equal to
 * {@link java.util.Locale#US Locale.US}.
 *
 * @return An array of locales for which localized
 *         <code>Collator</code> instances are available.
 */
public static synchronized Locale[] getAvailableLocales() {
    LocaleServiceProviderPool pool =
        LocaleServiceProviderPool.getPool(CollatorProvider.class);
    return pool.getAvailableLocales();
}
 
开发者ID:SunburstApps,项目名称:OpenJSharp,代码行数:19,代码来源:Collator.java


注:本文中的sun.util.locale.provider.LocaleServiceProviderPool.getAvailableLocales方法示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。