javaweb 国际化:DateFormat,NumberFormat,MessageFormat,ResourceBundle的使用

 更新时间:2016年09月06日 16:09:10   投稿:lqh  
本文主要介绍javaWEB国际化的知识,这里整理了详细的资料及实现代码,有兴趣的小伙伴可以参考下

Javaweb 国际化

DateFormat:格式化日期的工具类,本身是一个抽象类;

NumberFormat:格式化 数字 到 数字字符串,或货币字符串的字符类;

MessageFormat: 可以格式化模式字符串,模式字符串: 带占位符的字符串: "Date: {0}, Salary: {1}",可以通过 format 方法会模式字符串进行格式化

ResourceBundle:资源包类,在类路径(src)下需要有对应的资源文件: baseName.properties. 其中 baseName 是基名;

文件名为:test_zh_CN.properties,文件为:date=\u65E5\u671F,salary=\u5DE5\u8D44

文件名为:test_en_US.properties,文件为:date=date,salary=salary

import java.text.DateFormat;
import java.text.MessageFormat;
import java.text.NumberFormat;
import java.text.ParseException;
import java.text.SimpleDateFormat;
import java.util.Date;
import java.util.Locale;
import java.util.ResourceBundle;

import org.junit.Test;

public class I18nTest {
  
  /**
   * ResourceBundle: 资源包类.
   * 
   * 1. 在类路径下需要有对应的资源文件: baseName.properties. 其中 baseName 是基名.
   * 2. 可以使用 基名_语言代码_国家代码.properties 来添加不同国家或地区的资源文件. i18n_zh_CN.properties
   * 3. 要求所有基名相同的资源文件的 key 必须完全一致. 
   * 4. 可以使用 native2ascii 命令来得到 汉字 对一个的 asc 码. Eclipse 内置了工具
   * 5. 可以调用 ResourceBundle 的 getBundle(基名, Locale 实例) 获取获取 ResourceBundle 对象
   * 6. 可以调用 ResourceBundle 的 getString(key) 来获取资源文件的 value 字符串的值. 
   * 7. 结合 DateFormat, NumberFormat, MessageFormat 即可实现国际化. 
   * 
   */
  @Test
  public void testResourceBundle(){
    Locale locale = Locale.CHINA; 
    ResourceBundle resourceBundle = ResourceBundle.getBundle("test", locale);
  
    System.out.println(resourceBundle.getString("date"));
    System.out.println(resourceBundle.getString("salary"));
    
    String dateLabel = resourceBundle.getString("date");
    String salLabel = resourceBundle.getString("salary");
    
    String str = "{0}:{1}, {2}:{3}";
    
    Date date = new Date();
    double sal = 12345.12;
    
    DateFormat dateFormat = DateFormat.getDateInstance(DateFormat.MEDIUM, locale);
    String dateStr = dateFormat.format(date);
    
    NumberFormat numberFormat = NumberFormat.getCurrencyInstance(locale);
    String salStr = numberFormat.format(sal);
    
    String result = MessageFormat.format(str, dateLabel, dateStr, salLabel, salStr);
    System.out.println(result); 
  }
  
  /**
   * MessageFormat: 可以格式化模式字符串
   * 模式字符串: 带占位符的字符串: "Date: {0}, Salary: {1}"
   * 可以通过 format 方法会模式字符串进行格式化
   */
  @Test
  public void testMessageFormat(){
    String str = "Date: {0}, Salary: {1}";
    
    Locale locale = Locale.CHINA;
    Date date = new Date();
    double sal = 12345.12;
    
    DateFormat dateFormat = DateFormat.getDateInstance(DateFormat.MEDIUM, locale);
    String dateStr = dateFormat.format(date);
    
    NumberFormat numberFormat = NumberFormat.getCurrencyInstance(locale);
    String salStr = numberFormat.format(sal);
    
    String result = MessageFormat.format(str, dateStr, salStr);
    System.out.println(result); 
  }
  
  /**
   * NumberFormat: 格式化数字到数字字符串, 或货币字符串的工具类
   * 1. 通过工厂方法获取 NumberFormat 对象
   * NumberFormat.getNumberInstance(locale); //仅格式化为数字的字符串
   * NumberFormat.getCurrencyInstance(locale); //格式为货币的字符串
   * 
   * 2. 通过 format 方法来进行格式化
   * 3. 通过 parse 方法把一个字符串解析为一个 Number 类型. 
   */
  @Test
  public void testNumberFormat() throws ParseException{
    double d = 123456789.123d;
    Locale locale = Locale.FRANCE;
    
    //
    NumberFormat numberFormat = NumberFormat.getNumberInstance(locale);
    
    String str = numberFormat.format(d);
    System.out.println(str); 
    
    NumberFormat numberFormat2 = NumberFormat.getCurrencyInstance(locale);
    str = numberFormat2.format(d);
    System.out.println(str); 
    
    str = "123 456 789,123";
    d = (Double) numberFormat.parse(str);
    System.out.println(d); 
    
    str = "123 456 789,12 €";
    d = (Double) numberFormat2.parse(str);
    System.out.println(d);
    
  }
  
  /*
   * 7. 若有一个字符串, 如何解析为一个 Date 对象呢 ? 
   * I. 先创建 DateFormat 对象: 创建 DateFormat 的子类 SimpleDateFormat 对象
   * SimpleDateFormat(String pattern). 
   * 其中 pattern 为日期, 时间的格式, 例如: yyyy-MM-dd hh:mm:ss
   * II. 调用 DateFormat 的 parse 方法来解析字符串到 Date 对象. 
  */
  @Test
  public void testDateFormat2() throws ParseException{
    String str = "1990-12-12 12:12:12";
    DateFormat dateFormat = new SimpleDateFormat("yyyy-MM-dd hh:mm:ss");
    
    Date date = dateFormat.parse(str);
    System.out.println(date); 
  }
  
  /**
   * DateFormat: 格式化日期的工具类. 
   * DateFormate 本身是一个抽象类. 
   * 
   * 1. 若只希望通过 DateFormat 把一个 Date 对象转为一个字符串, 则可以通过 DateFormat 的工厂方法来获取 DateFormat 对象
   * 2. 可以获取只格式化 Date 的 DateFormat 对象: getDateInstance(int style, Locale aLocale) 
   * 3. 可以获取只格式化 Time 的 DateFormat 对象: getTimeInstance(int style, Locale aLocale) 
   * 4. 可以获取既格式化 Date, 也格式化 Time 的 DateFormat 对象: 
   * getDateTimeInstance(int dateStyle, int timeStyle, Locale aLocale) 
   * 5. 其中 style 可以取值为: DateFormat 的常量: SHORT, MEDIUM, LONG, FULL. Locale 则为代表国家地区的 Locale 对象
   * 6. 通过 DateFormat 的 format 方法来格式化个 Date 对象到字符串. 
   */
  @Test
  public void testDateFormat(){
    Locale locale = Locale.US;
    
    Date date = new Date();
    System.out.println(date); 
    
    //获取 DateFormat 对象
    DateFormat dateFormat = 
        DateFormat.getDateTimeInstance(DateFormat.LONG, DateFormat.MEDIUM, locale);
    String str = dateFormat.format(date);
    System.out.println(str); 
    
  }

  /**
   * Locale: Java 中表示国家或地区的类. JDK 中提供了很多常量.
   * 也可以通过 Locale(languageCode, countryCode) 的方式来创建 
   * 在 WEB 应用中可以通过 request.getLocale() 方法来获取. 
   */
  @Test
  public void testLocale(){
    Locale locale = Locale.CHINA;
    System.out.println(locale.getDisplayCountry());
    System.out.println(locale.getLanguage()); 
    
    locale = new Locale("en", "US");
    System.out.println(locale.getDisplayCountry());
    System.out.println(locale.getLanguage()); 
  }
  
}

以上就是对Java web国际化的资料整理,后续继续补充相关资料,谢谢大家对本站的支持!

相关文章

  • 使用@Autowired注解引入server服务层方法时报错的解决

    使用@Autowired注解引入server服务层方法时报错的解决

    这篇文章主要介绍了使用@Autowired注解引入server服务层方法时报错的解决,具有很好的参考价值,希望对大家有所帮助。如有错误或未考虑完全的地方,望不吝赐教
    2021-11-11
  • Java中过滤器 (Filter) 和 拦截器 (Interceptor)的使用

    Java中过滤器 (Filter) 和 拦截器 (Interceptor)的使用

    这篇文章主要介绍了Java中过滤器 (Filter) 和 拦截器 (Interceptor)的使用,文中通过示例代码介绍的非常详细,对大家的学习或者工作具有一定的参考学习价值,需要的朋友们下面随着小编来一起学习学习吧
    2021-05-05
  • java面向对象之人机猜拳小游戏

    java面向对象之人机猜拳小游戏

    这篇文章主要为大家详细介绍了java面向对象之人机猜拳小游戏,文中示例代码介绍的非常详细,具有一定的参考价值,感兴趣的小伙伴们可以参考一下
    2020-12-12
  • spring装配bean的3种方式总结

    spring装配bean的3种方式总结

    这篇文章主要给大家介绍了关于spring装配bean的3种方式,文中通过示例代码介绍的非常详细,对大家的学习或者使用Spring具有一定的参考学习价值,需要的朋友们下面来一起学习学习吧
    2019-03-03
  • 利用Java自写一个生成ID的工具类

    利用Java自写一个生成ID的工具类

    平时项目中只要涉及表,那么一定能接触到众多各式各样的ID编号。本文将通过Java语言实现手写一个ID生成工具类,需要的小伙伴可以参考一下
    2022-11-11
  • SpringBoot实现Md5对数据库数据加密的示例

    SpringBoot实现Md5对数据库数据加密的示例

    本文主要介绍了SpringBoot实现Md5对数据库数据加密的示例,文中通过示例代码介绍的非常详细,对大家的学习或者工作具有一定的参考学习价值,需要的朋友们下面随着小编来一起学习学习吧
    2023-04-04
  • Spring中的拦截器HandlerInterceptor详细解析

    Spring中的拦截器HandlerInterceptor详细解析

    这篇文章主要介绍了Spring中的拦截器HandlerInterceptor详细解析,HandlerInterceptor 是 Spring 框架提供的一个拦截器接口,用于在请求处理过程中拦截和处理请求,需要的朋友可以参考下
    2024-01-01
  • JAVA线上常见问题排查手段(小结)

    JAVA线上常见问题排查手段(小结)

    这篇文章主要介绍了JAVA线上常见问题排查手段(小结),小编觉得挺不错的,现在分享给大家,也给大家做个参考。一起跟随小编过来看看吧
    2019-07-07
  • Java实现升级版布谷鸟闯关游戏的示例代码

    Java实现升级版布谷鸟闯关游戏的示例代码

    升级版布谷鸟闯关游戏是一个基于java的布谷鸟闯关游戏,鼠标左键点击控制鸟的位置穿过管道间的缝隙。文中的示例代码讲解详细,感兴趣的小伙伴可以了解一下
    2022-02-02
  • Spring Security权限控制的实现接口

    Spring Security权限控制的实现接口

    这篇文章主要介绍了Spring Security的很多功能,在这些众多功能中,我们知道其核心功能其实就是认证+授权。Spring教程之Spring Security的四种权限控制方式
    2023-03-03

最新评论