热门标签 | HotTags
当前位置:  开发笔记 > 编程语言 > 正文

java.text.MessageFormat.getLocale()方法的使用及代码示例

本文整理了Java中java.text.MessageFormat.getLocale()方法的一些代码示例,展示了MessageFormat.getLoc

本文整理了Java中java.text.MessageFormat.getLocale()方法的一些代码示例,展示了MessageFormat.getLocale()的具体用法。这些代码示例主要来源于Github/Stackoverflow/Maven等平台,是从一些精选项目中提取出来的代码,具有较强的参考意义,能在一定程度帮忙到你。MessageFormat.getLocale()方法的具体详情如下:
包路径:java.text.MessageFormat
类名称:MessageFormat
方法名:getLocale

MessageFormat.getLocale介绍

[英]Returns the locale used when creating formats.
[中]返回创建格式时使用的区域设置。

代码示例

代码示例来源:origin: at.bestsolution.efxclipse.eclipse/com.ibm.icu.base

/**
* Returns the locale that's used when creating or comparing subformats.
*
* @return the locale used when creating or comparing subformats
* @stable ICU 3.0
*/
public Locale getLocale() {
return messageFormat.getLocale();
}

代码示例来源:origin: at.bestsolution.eclipse/com.ibm.icu.base

/**
* Returns the locale that's used when creating or comparing subformats.
*
* @return the locale used when creating or comparing subformats
* @stable ICU 3.0
*/
public Locale getLocale() {
return messageFormat.getLocale();
}

代码示例来源:origin: org.netbeans.modules/org-netbeans-modules-visualweb-propertyeditors

/**
* If a class loader is not passed in, I will only be able to fetch ResourceBundles that
* are reachable from MY class loader. This is due to a bug in ResourceBundle that
* goes up the stack only 2 levels in order to find the appropriate class loader.
* Since I provide a level of indirection, I will ALWAYS be the callee, and therefore
* at the 2nd level.
* See source for ResourceBundle.getBundle() ResourceBundle.getLoader().
*
* @param baseName
*/
public void init(String baseName, ClassLoader classLoader) {
rb = ResourceBundle.getBundle(baseName, mf.getLocale(), classLoader);
}

代码示例来源:origin: org.netbeans.modules/org-netbeans-modules-visualweb-jsfsupport-designtime

/**
* If a class loader is not passed in, I will only be able to fetch ResourceBundles that
* are reachable from MY class loader. This is due to a bug in ResourceBundle that
* goes up the stack only 2 levels in order to find the appropriate class loader.
* Since I provide a level of indirection, I will ALWAYS be the callee, and therefore
* at the 2nd level.
* See source for ResourceBundle.getBundle() ResourceBundle.getLoader().
*
* @param baseName
*/
public void init(String baseName, ClassLoader classLoader) {
rb = ResourceBundle.getBundle(baseName, mf.getLocale(), classLoader);
}

代码示例来源:origin: org.netbeans.modules/org-netbeans-modules-visualweb-propertyeditors

/**
* If a class loader is not passed in, I will only be able to fetch ResourceBundles that
* are reachable from MY class loader. This is due to a bug in ResourceBundle that
* goes up the stack only 2 levels in order to find the appropriate class loader.
* Since I provide a level of indirection, I will ALWAYS be the callee, and therefore
* at the 2nd level.
* See source for ResourceBundle.getBundle() ResourceBundle.getLoader().
*
* @param baseName
*/
public void init(String baseName, ClassLoader classLoader) {
rb = ResourceBundle.getBundle(baseName, mf.getLocale(), classLoader);
}

代码示例来源:origin: at.bestsolution.efxclipse.eclipse/com.ibm.icu.base

/**
* {@icu} Returns the locale that's used when creating or comparing subformats.
*
* @return the locale used when creating or comparing subformats
* @stable ICU 3.2
*/
public ULocale getULocale() {
return ULocale.forLocale(messageFormat.getLocale());
}

代码示例来源:origin: at.bestsolution.eclipse/com.ibm.icu.base

/**
* {@icu} Returns the locale that's used when creating or comparing subformats.
*
* @return the locale used when creating or comparing subformats
* @stable ICU 3.2
*/
public ULocale getULocale() {
return ULocale.forLocale(messageFormat.getLocale());
}

推荐阅读
  • 本文详细介绍了Java中org.w3c.dom.Text类的splitText()方法,通过多个代码示例展示了其实际应用。该方法用于将文本节点在指定位置拆分为两个节点,并保持在文档树中。 ... [详细]
  • 本文详细介绍了Java中org.neo4j.helpers.collection.Iterators.single()方法的功能、使用场景及代码示例,帮助开发者更好地理解和应用该方法。 ... [详细]
  • 技术分享:从动态网站提取站点密钥的解决方案
    本文探讨了如何从动态网站中提取站点密钥,特别是针对验证码(reCAPTCHA)的处理方法。通过结合Selenium和requests库,提供了详细的代码示例和优化建议。 ... [详细]
  • 深入理解Cookie与Session会话管理
    本文详细介绍了如何通过HTTP响应和请求处理浏览器的Cookie信息,以及如何创建、设置和管理Cookie。同时探讨了会话跟踪技术中的Session机制,解释其原理及应用场景。 ... [详细]
  • 本文详细介绍了Java中org.eclipse.ui.forms.widgets.ExpandableComposite类的addExpansionListener()方法,并提供了多个实际代码示例,帮助开发者更好地理解和使用该方法。这些示例来源于多个知名开源项目,具有很高的参考价值。 ... [详细]
  • RecyclerView初步学习(一)
    RecyclerView初步学习(一)ReCyclerView提供了一种插件式的编程模式,除了提供ViewHolder缓存模式,还可以自定义动画,分割符,布局样式,相比于传统的ListVi ... [详细]
  • 创建项目:Visual Studio Online 入门指南
    本文介绍如何使用微软的 Visual Studio Online(VSO)创建和管理开发项目。作为一款基于云计算的开发平台,VSO 提供了丰富的工具和服务,简化了项目的配置和部署流程。 ... [详细]
  • 黑马头条项目:Vue 文章详情模块与交互功能实现
    本文详细介绍了如何在黑马头条项目中配置文章详情模块的路由、获取和展示文章详情数据,以及实现关注、点赞、不喜欢和评论功能。通过这些步骤,您可以全面了解如何开发一个完整的前端文章详情页面。 ... [详细]
  • golang常用库:配置文件解析库/管理工具viper使用
    golang常用库:配置文件解析库管理工具-viper使用-一、viper简介viper配置管理解析库,是由大神SteveFrancia开发,他在google领导着golang的 ... [详细]
  • PHP 5.2.5 安装与配置指南
    本文详细介绍了 PHP 5.2.5 的安装和配置步骤,帮助开发者解决常见的环境配置问题,特别是上传图片时遇到的错误。通过本教程,您可以顺利搭建并优化 PHP 运行环境。 ... [详细]
  • Android LED 数字字体的应用与实现
    本文介绍了一种适用于 Android 应用的 LED 数字字体(digital font),并详细描述了其在 UI 设计中的应用场景及其实现方法。这种字体常用于视频、广告倒计时等场景,能够增强视觉效果。 ... [详细]
  • 本文探讨了在不使用服务器控件的情况下,如何通过多种方法获取并修改页面中的HTML元素值。除了常见的AJAX方式,还介绍了其他可行的技术方案。 ... [详细]
  • 本文详细介绍了 Java 中的 org.apache.hadoop.registry.client.impl.zk.ZKPathDumper 类,提供了丰富的代码示例和使用指南。通过这些示例,读者可以更好地理解如何在实际项目中利用 ZKPathDumper 类进行注册表树的转储操作。 ... [详细]
  • 深入解析Java虚拟机(JVM)架构与原理
    本文旨在为读者提供对Java虚拟机(JVM)的全面理解,涵盖其主要组成部分、工作原理及其在不同平台上的实现。通过详细探讨JVM的结构和内部机制,帮助开发者更好地掌握Java编程的核心技术。 ... [详细]
  • 本文详细介绍了 Java 中 org.geotools.data.shapefile.ShapefileDataStore 类的 getCurrentTypeName() 方法,并提供了多个代码示例,帮助开发者更好地理解和使用该方法。 ... [详细]
author-avatar
QQ文科
这个家伙很懒,什么也没留下!
PHP1.CN | 中国最专业的PHP中文社区 | DevBox开发工具箱 | json解析格式化 |PHP资讯 | PHP教程 | 数据库技术 | 服务器技术 | 前端开发技术 | PHP框架 | 开发工具 | 在线工具
Copyright © 1998 - 2020 PHP1.CN. All Rights Reserved | 京公网安备 11010802041100号 | 京ICP备19059560号-4 | PHP1.CN 第一PHP社区 版权所有