Java的本土化:导言 : 资源包 « 本地化 « Java

En
Java
1. 图形用户界面
2. 三维图形动画
3. 高级图形
4. 蚂蚁编译
5. Apache类库
6. 统计图
7. 
8. 集合数据结构
9. 数据类型
10. 数据库JDBC
11. 设计模式
12. 开发相关类
13. EJB3
14. 电子邮件
15. 事件
16. 文件输入输出
17. 游戏
18. 泛型
19. GWT
20. Hibernate
21. 本地化
22. J2EE平台
23. 基于J2ME
24. JDK-6
25. JNDI的LDAP
26. JPA
27. JSP技术
28. JSTL
29. 语言基础知识
30. 网络协议
31. PDF格式RTF格式
32. 映射
33. 常规表达式
34. 脚本
35. 安全
36. Servlets
37. Spring
38. Swing组件
39. 图形用户界面
40. SWT-JFace-Eclipse
41. 线程
42. 应用程序
43. Velocity
44. Web服务SOA
45. 可扩展标记语言
Java 教程
Java » 本地化 » 资源包屏幕截图 
Java的本土化:导言
Java的本土化:导言
 
/* From http://java.sun.com/docs/books/tutorial/index.html */
/*
 * Copyright (c) 1995-1998 Sun Microsystems, Inc. All Rights Reserved.
 
 * Permission to use, copy, modify, and distribute this software and its
 * documentation for NON-COMMERCIAL purposes and without fee is hereby granted
 * provided that this copyright notice appears in all copies. Please refer to
 * the file "copyright.html" for further important copyright and licensing
 * information.
 
 * SUN MAKES NO REPRESENTATIONS OR WARRANTIES ABOUT THE SUITABILITY OF THE
 * SOFTWARE, EITHER EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE IMPLIED
 * WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE, OR
 * NON-INFRINGEMENT. SUN SHALL NOT BE LIABLE FOR ANY DAMAGES SUFFERED BY
 * LICENSEE AS A RESULT OF USING, MODIFYING OR DISTRIBUTING THIS SOFTWARE OR ITS
 * DERIVATIVES.
 */

import java.util.Locale;
import java.util.ResourceBundle;

public class I18NSample {

  static public void main(String[] args) {

    String language;
    String country;

    if (args.length != 2) {
      language = new String("en");
      country = new String("US");
    else {
      language = new String(args[0]);
      country = new String(args[1]);
    }

    Locale currentLocale;
    ResourceBundle messages;

    currentLocale = new Locale(language, country);

    messages = ResourceBundle.getBundle("MessagesBundle", currentLocale);

    System.out.println(messages.getString("greetings"));
    System.out.println(messages.getString("inquiry"));
    System.out.println(messages.getString("farewell"));
  }
}

//File:MessageBundle.properties
/*
greetings = Hello.
farewell = Goodbye.
inquiry = How are you?

*/

//File:MessageBundle_en_DE.properties
/*
greetings = Hallo.
farewell = Tschub.
inquiry = Wie geht's?

*/

//File:MessageBundle_fr_FR.properites
/*
greetings = Bonjour.
farewell = Au revoir.
inquiry = Comment allez-vous?

*/

//File:MessageBundle_en_US.properties
/*
greetings = Hello.
farewell = Goodbye.
inquiry = How are you?

*/


           
         
  
Related examples in the same category
1. Load resource with ResourceBundle.getBundle
2. 加载一个资源束
3. Localizing Messages with a property-file type resource bundle
4. 边界匹配表达式
5. Convert ResourceBundle to Properties
6. Get resource bundle for a certain localeGet resource bundle for a certain locale
7. Convert ResourceBundle to Map
8. Use ResourceBundle for i18n
9. 在启动加载资源环境
10. 通过资源文件加载资源
11. 基于文件资源捆绑的Java
12. 资源束的设置
13. Java代码资源束
14. 名单资源束创建
15. Simple Resource Bundle based on Java code
16. Create one button, internationalizedly
17. Java Internationalization: load string from properties Java Internationalization: load string from properties
18. Isolating Locale-Specific Data with Resource Bundles Isolating Locale-Specific Data with Resource Bundles
19. 财产清单资源束
20. Which Bundle Comes First
21. Localized JOptionPane
22. Big Demo for I18N
23. 法语弹出框法语弹出框
24. ResourceBundle with ParametersResourceBundle with Parameters
25. ResourceBundle with parameter positionResourceBundle with parameter position
www.java2java.com | Contact Us
Copyright 2010 - 2030 Java Source and Support. All rights reserved.
All other trademarks are property of their respective owners.