Documentation

The Java™ Tutorials

Trail: Internationalization轨迹:国际化

The lessons in this trail teach you how to internationalize Java applications. 本教程中的课程将教您如何国际化Java应用程序。Internationalized applications are easy to tailor to the customs and languages of end users around the world.国际化应用程序很容易根据世界各地最终用户的习惯和语言进行定制。


Note: This tutorial trail covers core internationalization functionality, which is the foundation required by additional features provided for desktop, enterprise, and mobile applications. 本教程涵盖了核心国际化功能,这是为桌面、企业和移动应用程序提供的附加功能所需的基础。For additional information, see the Java Internationalization home page. 有关更多信息,请参阅Java国际化主页

Introduction简介 defines the term internationalization, gives a quick sample program, and provides a checklist you can use to internationalize an existing program.定义了术语国际化,给出了一个快速示例程序,并提供了一个清单,您可以使用它来国际化现有程序。

Setting the Locale设置区域设置 explains how to create and how to use Locale objects.说明如何创建和使用区域设置对象。

Isolating Locale-Specific Data隔离特定于区域设置的数据 shows how to dynamically access objects that vary with Locale.显示了如何动态访问随Locale变化的对象。

Formatting格式化 explains how to format numbers, dates, and text messages according to Locale, and how to create customized formats with patterns.说明如何根据Locale设置数字、日期和文本消息的格式,以及如何使用模式创建自定义格式。

Working with Text处理文本 provides techniques for manipulating text in a locale-independent manner.提供以独立于区域设置的方式操作文本的技术。

Internationalization of Network Resources网络资源国际化 explains how to provide internationalization for IDN's.解释如何为IDN提供国际化。

Service Providers for Internationalization国际化服务提供商 explains how to enable the plug-in of locale-dependent data and services.说明如何启用依赖于区域设置的数据和服务的插件。


Previous page: Beginning of Tutorial
Next page: Introduction