程序師世界是廣大編程愛好者互助、分享、學習的平台,程序師世界有你更精彩!
首頁
編程語言
C語言|JAVA編程
Python編程
網頁編程
ASP編程|PHP編程
JSP編程
數據庫知識
MYSQL數據庫|SqlServer數據庫
Oracle數據庫|DB2數據庫
 程式師世界 >> 編程語言 >> JAVA編程 >> 關於JAVA >> javaweb 國際化:DateFormat,NumberFormat,MessageFormat,ResourceBundle的應用

javaweb 國際化:DateFormat,NumberFormat,MessageFormat,ResourceBundle的應用

編輯:關於JAVA

javaweb 國際化:DateFormat,NumberFormat,MessageFormat,ResourceBundle的應用。本站提示廣大學習愛好者:(javaweb 國際化:DateFormat,NumberFormat,MessageFormat,ResourceBundle的應用)文章只能為提供參考,不一定能成為您想要的結果。以下是javaweb 國際化:DateFormat,NumberFormat,MessageFormat,ResourceBundle的應用正文


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國際化的材料整頓,後續持續彌補相干材料,感謝年夜家對本站的支撐!

  1. 上一頁:
  2. 下一頁:
Copyright © 程式師世界 All Rights Reserved