Introduction

Internationalization

The process of designing a web application such that it supports various countries, various languages without performing any changes in the application is called Internationalization.

If the request is coming from India then the response should be in India specific form , and if the request is from US then the response should be in US specific form. We can implement Internationalization by using the following classes.

1. Locale

To represent a particular region.

2. NumberFormat

For formatting Numbers.

3. DateFormat

For formatting Dates.

Introduction

Scroll to top