国际化

作者: 马建超 | 来源:发表于2017-09-20 23:54 被阅读19次
    国际化 国际化

    /**

    * 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("i18n", 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);

    }

    国际化

    <%@page import="java.util.Locale"%><%@page import="java.util.Date"%><%@ page language="java" contentType="text/html; charset=UTF-8"    pageEncoding="UTF-8"%><%@ taglib prefix="fmt" uri="http://java.sun.com/jsp/jstl/fmt" %><%@ taglib prefix="c" uri="http://java.sun.com/jsp/jstl/core" %>    <% Date date = new Date();request.setAttribute("date", date);request.setAttribute("salary", 12345.67);%><%--:,:

    --%><% String code = request.getParameter("code");if(code != null){if("en".equals(code)){session.setAttribute("locale", Locale.US);}else if("zh".equals(code)){session.setAttribute("locale", Locale.CHINA);}}%>:,:

    English中文

    相关文章

      网友评论

          本文标题:国际化

          本文链接:https://www.haomeiwen.com/subject/pavasxtx.html