>  기사  >  Java  >  Java의 국제화

Java의 국제화

WBOY
WBOY원래의
2024-08-30 15:41:371051검색

다음 문서에서는 Java의 국제화에 대한 개요를 제공합니다. 국제화는 애플리케이션을 변경할 필요 없이 여러 국가, 언어 및 통화를 자동으로 지원하는 방식으로 웹 애플리케이션을 만드는 프로세스입니다. I와 N 사이에 18개의 문자가 있기 때문에 I18N이라고도 합니다. 오늘날 소프트웨어나 웹사이트를 디자인할 때 전 세계 시장은 중요한 요소입니다. 글로벌 시장을 위한 소프트웨어 애플리케이션이 계속 확장됨에 따라 기업은 현지 지역 및 언어로 사용자와 소통할 수 있는 제품을 만들어야 합니다.

무료 소프트웨어 개발 과정 시작

웹 개발, 프로그래밍 언어, 소프트웨어 테스팅 등

해외 시장용 소프트웨어를 개발하는 개발자는 각 문화의 관습과 차이점을 알고 있어야 합니다. 언어, 구두점, 통화, 날짜, 시간, 숫자 및 시간대는 모두 차이의 예입니다. 현지화 역시 첫 문자 'L'과 마지막 문자 'N' 사이에 10개의 문자가 있기 때문에 I10N으로 단축됩니다. 현지화는 애플리케이션이 특정 언어와 장소에 맞게 조정될 수 있도록 로캘별 텍스트와 구성 요소를 애플리케이션에 추가하는 프로세스입니다.

Java의 국제화 구문

국제화를 구현하는 데 다음 클래스를 사용할 수 있습니다.

  • 로케일
  • 숫자형식
  • 날짜형식

1. 로케일

Locale 객체는 지리적 위치나 언어를 나타내는 데 사용될 수 있습니다. java.util 패키지에는 Locale 클래스가 포함되어 있습니다.

로케일 클래스 생성자:

Locale l = new Locale(String language);
Locale l = new Locale(String language, String country);

로케일 클래스의 상수:

일부 로캘 상수는 이미 Locale 클래스에 선언되어 있습니다.

이러한 상수는 직접 사용할 수 있으며 아래에는 몇 가지 상수가 나와 있습니다.

  • 로케일. 영국
  • Locale.ITALY
  • Locale.US

로케일 클래스의 기능:

  • pubic static Locale getDefault(): 이 메소드는 현재 로케일의 인스턴스를 가져오는 데 사용됩니다.
  • public static Locale[] getAvailableLocales(): 이 메소드는 현재 로케일의 배열을 가져오는 데 사용됩니다.
  • public String getDisplayLanguage(Locale l): 이 메소드는 전달된 로케일 객체의 언어 이름을 가져오는 데 사용됩니다.
  • public String getDisplayVariant(Locale l): 이 메소드는 전달된 로케일 객체의 변형 코드를 가져오는 데 사용됩니다.
  • public String getDisplayCountry(Locale l): 이 메소드는 전달된 로케일 객체의 국가 이름을 가져오는 데 사용됩니다.
  • public static getISO3Language(): 이 메소드는 로케일의 현재 언어 코드에 대한 3자리 약어를 가져오는 데 사용됩니다.
  • public static getISO3Country(): 이 메소드는 로케일의 현재 국가에 대한 3자리 약어를 가져오는 데 사용됩니다.

2. 숫자형식

NumberFormat 클래스를 사용하여 특정 로케일에 따라 숫자 형식을 지정할 수 있습니다. java.Text 패키지에 존재하는 NumberFormat 클래스는 추상 클래스이므로 생성자를 사용하여 객체를 생성할 수 없습니다.

로캘 클래스의 기능:

  • public static NumberFormat getInstance(): 이 메소드는 기본 Locale의 객체를 가져오는 데 사용됩니다.
  • public static NumberFormat getInstance(Locale l): 이 메소드는 전달된 Locale 객체에 대한 객체를 가져오는 데 사용됩니다.
  • public static NumberFormat getCurrencyInstance(): 이 메소드는 특정 통화로 표시할 기본 Locale의 개체를 가져오는 데 사용됩니다.
  • 공용 정적 형식(long l):이 메소드는 전달된 숫자를 로케일 객체로 변환하는 데 사용됩니다.

3. 날짜형식

날짜 형식은 지역마다 다르기 때문에 날짜 형식을 국제화합니다. DateFromat 클래스를 사용하여 특정 로케일에 따라 날짜 형식을 지정할 수 있습니다. DateFormat은 java.text 패키지의 추상 클래스입니다.

로케일 클래스의 상수:

일부 DateFormat 상수는 DateFormat 클래스에 이미 선언되어 있습니다.

이러한 상수는 직접 사용할 수 있으며 아래에는 몇 가지 상수가 나와 있습니다.

  • DateFormat.LONG
  • DateFormat.MINUTE_FIELD
  • DateFormat.MINUTE_FIELD

DateFormat 클래스의 기능:

  • final String format(Date date): This method converts and returns the specified Date object into a string.
  • static final DateFormat getInstance(): This method is used to gets a date-time formatter with a short formatting style for date and time.
  • static Locale[] getAvailableLocales(): This method is used to gets an array of present locales.
  • static final DateFormat getTimeInstance(): This method is used to gets time formatter with default formatting style for the default locale.
  • static final DateFormat getTimeInstance(int style): This method is used to gets time formatter with the specified formatting style for the default locale.
  • static final DateFormat getTimeInstance(int style, Locale locale): This method is used to gets time formatter with the specified formatting style for the given locale.
  • TimeZone getTimeZone(): This method is used to gets an object of TimeZone for this DateFormat instance.
  • static final DateFormat getDateInstance(): This method is used to gets date formatter with default formatting style for the default locale.
  • static final DateFormat getDateInstance(int style): This method is used to gets date formatter with the specified formatting style for the default locale.
  • static final DateFormat getDateInstance(int style, Locale locale): This method is used to gets date formatter with the specified formatting style for the given locale.
  • static final DateFormat getDateTimeInstance(): This method is used to gets date or time formatter with default formatting style for the default locale.
  • NumberFormat getNumberFormat(): This method is used to gets an object of NumberFormat for this DateFormat instance.
  • Calendar getCalendar(): This method is used to gets an object of the Calendar for this DateFormat instance.

Examples of Internationalization in Java

Given below are the examples mentioned:

Example #1

Example for the internationalization in Java to create different country locale.

Code:

// The program can be tested in Eclipse IDE, JAVA 11
package jex;
import java.util.Locale;
public class ex
{
public static void main(String[] args) {
Locale[] locales = { new Locale("en", "US"), new Locale("it", "IT"), new Locale("es", "ES") };
for (int l=0; l< locales.length; l++)
{
String Language = locales[l].getDisplayLanguage(locales[l]);
System.out.println(locales[l].toString() + ": " + Language);
}
}
}

Output:

Java의 국제화

As in the above program, the Locale class objects are created and store in the array. Next, used the for loop to iterate each locale object and display its name and its language, as we can see in the above output.

Example #2

Example for the internationalization in Java to show the number in different formats for the different countries.

Code:

// The program can be tested in Eclipse IDE, JAVA 11
package jex;
import java.util.*;
import java.text.*;
public class ex
{
public static void main (String[]args)
{
double n = 45273.8956;
NumberFormat f1 = NumberFormat.getInstance (Locale.US);
NumberFormat f2 = NumberFormat.getInstance (Locale.ITALY);
NumberFormat f3 = NumberFormat.getInstance (Locale.CHINA);
System.out.println ("The number format in US is :" + f1.format (n));
System.out.println ("The number format in ITALY is:" + f2.format (n));
System.out.println ("The number format in CHINA is :" + f3.format (n));
}
}

Output:

Java의 국제화

As in the above program, three different NumberFormat class objects are created using the Locale class. Next, using the format() method of the NumberFormat class, the given number is printing in the specific format of the country, as we can see in the above output.

Example #3

Example for the internationalization in Java to show the date in different formats for the different countries.

Code:

// The program can be tested in Eclipse IDE, JAVA 11
package jex;
import java.text.DateFormat;
import java.util.Date;
import java.util.Locale;
public class ex
{
public static void main (String[]args)
{
DateFormat d1 = DateFormat.getDateInstance (0, Locale.US);
DateFormat d2 = DateFormat.getDateInstance (0, Locale.ITALY);
DateFormat d3 = DateFormat.getDateInstance (0, Locale.CHINA);
System.out.println ("The date format in US is :" + d1.format (new Date ()));
System.out.println ("The date format in ITALY is : " + d2.format (new Date ()));
System.out.println ("The date format in CHINA is : " + d3.format (new Date ()));
}
}

Output:

Java의 국제화

As in the above program, three different DateFormat class objects are created using the Locale class. Next, using the format() method of the DateFormat class, the return date of the Date() method is printing in the specific format of the country, as we can see in the above output.

Conclusion

Internationalization is also called I18N because there are 18 characters between the letters I and N. It is the process of creating web applications in such a way that they automatically support several countries, languages, and currencies without requiring any changes to the application.

위 내용은 Java의 국제화의 상세 내용입니다. 자세한 내용은 PHP 중국어 웹사이트의 기타 관련 기사를 참조하세요!

성명:
본 글의 내용은 네티즌들의 자발적인 기여로 작성되었으며, 저작권은 원저작자에게 있습니다. 본 사이트는 이에 상응하는 법적 책임을 지지 않습니다. 표절이나 침해가 의심되는 콘텐츠를 발견한 경우 admin@php.cn으로 문의하세요.
이전 기사:Java의 기본 메소드다음 기사:Java의 기본 메소드