다음 문서에서는 Java의 국제화에 대한 개요를 제공합니다. 국제화는 애플리케이션을 변경할 필요 없이 여러 국가, 언어 및 통화를 자동으로 지원하는 방식으로 웹 애플리케이션을 만드는 프로세스입니다. I와 N 사이에 18개의 문자가 있기 때문에 I18N이라고도 합니다. 오늘날 소프트웨어나 웹사이트를 디자인할 때 전 세계 시장은 중요한 요소입니다. 글로벌 시장을 위한 소프트웨어 애플리케이션이 계속 확장됨에 따라 기업은 현지 지역 및 언어로 사용자와 소통할 수 있는 제품을 만들어야 합니다.
무료 소프트웨어 개발 과정 시작
웹 개발, 프로그래밍 언어, 소프트웨어 테스팅 등
해외 시장용 소프트웨어를 개발하는 개발자는 각 문화의 관습과 차이점을 알고 있어야 합니다. 언어, 구두점, 통화, 날짜, 시간, 숫자 및 시간대는 모두 차이의 예입니다. 현지화 역시 첫 문자 'L'과 마지막 문자 'N' 사이에 10개의 문자가 있기 때문에 I10N으로 단축됩니다. 현지화는 애플리케이션이 특정 언어와 장소에 맞게 조정될 수 있도록 로캘별 텍스트와 구성 요소를 애플리케이션에 추가하는 프로세스입니다.
국제화를 구현하는 데 다음 클래스를 사용할 수 있습니다.
Locale 객체는 지리적 위치나 언어를 나타내는 데 사용될 수 있습니다. java.util 패키지에는 Locale 클래스가 포함되어 있습니다.
로케일 클래스 생성자:
Locale l = new Locale(String language);
Locale l = new Locale(String language, String country);
로케일 클래스의 상수:
일부 로캘 상수는 이미 Locale 클래스에 선언되어 있습니다.
이러한 상수는 직접 사용할 수 있으며 아래에는 몇 가지 상수가 나와 있습니다.
로케일 클래스의 기능:
NumberFormat 클래스를 사용하여 특정 로케일에 따라 숫자 형식을 지정할 수 있습니다. java.Text 패키지에 존재하는 NumberFormat 클래스는 추상 클래스이므로 생성자를 사용하여 객체를 생성할 수 없습니다.
로캘 클래스의 기능:
날짜 형식은 지역마다 다르기 때문에 날짜 형식을 국제화합니다. DateFromat 클래스를 사용하여 특정 로케일에 따라 날짜 형식을 지정할 수 있습니다. DateFormat은 java.text 패키지의 추상 클래스입니다.
로케일 클래스의 상수:
일부 DateFormat 상수는 DateFormat 클래스에 이미 선언되어 있습니다.
이러한 상수는 직접 사용할 수 있으며 아래에는 몇 가지 상수가 나와 있습니다.
DateFormat 클래스의 기능:
Given below are the examples mentioned:
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:
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 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:
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 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:
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.
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 중국어 웹사이트의 기타 관련 기사를 참조하세요!