> Java > java지도 시간 > 본문

Java가 속성 리소스 파일을 처리하는 방법

PHPz
풀어 주다: 2023-04-28 14:19:06
앞으로
1149명이 탐색했습니다.

Java 언어에서는 확장자가 .properties인 텍스트 파일이 리소스 파일로 사용됩니다. 이 파일 유형의 콘텐츠 형식은

#Comment 문
some_key=some_value

과 유사합니다. #으로 시작하는 줄은 주석 줄로 사용되며 ResourceBundle 클래스에서 처리할 때 무시됩니다. 나머지 줄은 키 이름=값 형식으로 설명할 수 있습니다.

Java의 ResourceBundle 클래스는 이 형식의 파일을 처리할 수 있습니다.

ResourceBundle 클래스도 사용이 매우 간단합니다. 예를 들어 설명하겠습니다.

다음 두 가지 속성 파일이 있다고 가정합니다.

TestProperties.properties   view plainprint?  #key=value     userIdLabel=User Id:      userNameLabel=User Name:     #key=value userIdLabel=User Id:   userNameLabel=User Name:   TestProperties_zh_CN.properties   view plainprint?  #key=value     userIdLabel=用户ID:      userNameLabel=用户名:     #key=value userIdLabel=用户ID:   userNameLabel=用户名:
로그인 후 복사

TestProperties_zh_CN.properties 파일 이름에 실제로 리소스 파일의 현지화 처리에 사용되는 _zh_CN 이름이 있음을 알 수 있습니다. 현지화란 무엇입니까? 간단히 설명하자면, 시스템을 개발할 때 서로 다른 지역의 사용자를 위해 서로 다른 인터페이스를 준비해야 하는 경우가 많습니다. 예를 들어 시스템이 영어 사용자와 중국어 사용자 모두를 대상으로 하는 경우 시스템에 대해 2세트를 준비해야 합니다. . 인터페이스(메시지 포함), 한 세트는 영어 인터페이스이고 다른 세트는 중국어 인터페이스입니다. 물론 서로 다른 인터페이스를 제외하면 시스템 프로세스는 완전히 동일합니다. 물론, 각각에 대해 서로 다른 두 가지 시스템을 개발하는 것은 불가능합니다. 이를 위해서는 리소스의 현지화가 필요합니다. 즉, 사용자의 지역이나 언어에 따라 서로 다른 리소스 파일을 준비하므로 사용자별로 서로 다른 인터페이스를 준비할 수 있지만 동일한 시스템 로직 세트가 사용됩니다.

위의 두 파일은 두 개의 서로 다른 리소스 세트입니다.

ResourceBundle 클래스를 사용하여 다양한 리소스의 코드를 처리합니다.

TestProperties.java   view plainprint?  package com.test.properties;          import java.util.Enumeration;     import java.util.Locale;     import java.util.ResourceBundle;          public class TestProperties  {              public static void main(String []args) {     String resourceFile = "com.test.properties.TestProperties";     //创建一个默认的ResourceBundle对象     //ResourceBundle会查找包com.test.properties下的TestProperties.properties的文件     //com.test.properties是资源的包名,它跟普通java类的命名规则完全一样:     //- 区分大小写     //- 扩展名 .properties 省略。就像对于类可以省略掉 .class扩展名一样     //- 资源文件必须位于指定包的路径之下(位于所指定的classpath中)     //另外,对于非西欧字符(比如中日韩文等),需要使用native2ascii命令或类似工具将其转换成ascii码文件格式,否则会显示乱码。     System.out.println("---Default Locale---");     ResourceBundle resource = ResourceBundle.getBundle(resourceFile);          testResourceBundle(resource);          System.out.println("---Locale.SIMPLIFIED_CHINESE---");          //创建一个指定Locale(本地化)的ResourceBundle对象,这里指定为Locale.SIMPLIFIED_CHINESE     //所以ResourceBundle会查找com.test.properties.TestProperties_zh_CN.properties的文件     //     //中文相关的Locale有:     //Locale.SIMPLIFIED_CHINESE : zh_CN     resource = ResourceBundle.getBundle(resourceFile, Locale.SIMPLIFIED_CHINESE);     //Locale.CHINA  : zh_CN     //Locale.CHINESE: zh     testResourceBundle(resource);          //显示     //         }                  private static void testResourceBundle(ResourceBundle resource) {     //取得指定关键字的value值     String userIdLabel = resource.getString("userIdLabel");     System.out.println(userIdLabel);          //取得所有key值     Enumeration enu = resource.getKeys();          System.out.println("keys:");     while(enu.hasMoreElements()) {         System.out.println(enu.nextElement());     }         }     }     package com.test.properties;   import java.util.Enumeration;  import java.util.Locale;  import java.util.ResourceBundle;   public class TestProperties  {       public static void main(String []args) {  String resourceFile = "com.test.properties.TestProperties";  //创建一个默认的ResourceBundle对象  //ResourceBundle会查找包com.test.properties下的TestProperties.properties的文件  //com.test.properties是资源的包名,它跟普通java类的命名规则完全一样:  //- 区分大小写  //- 扩展名 .properties 省略。就像对于类可以省略掉 .class扩展名一样  //- 资源文件必须位于指定包的路径之下(位于所指定的classpath中)  //另外,对于非西欧字符(比如中日韩文等),需要使用native2ascii命令或类似工具将其转换成ascii码文件格式,否则会显示乱码。  System.out.println("---Default Locale---");  ResourceBundle resource = ResourceBundle.getBundle(resourceFile);   testResourceBundle(resource);   System.out.println("---Locale.SIMPLIFIED_CHINESE---");   //创建一个指定Locale(本地化)的ResourceBundle对象,这里指定为Locale.SIMPLIFIED_CHINESE  //所以ResourceBundle会查找com.test.properties.TestProperties_zh_CN.properties的文件  //  //中文相关的Locale有:  //Locale.SIMPLIFIED_CHINESE : zh_CN  resource = ResourceBundle.getBundle(resourceFile, Locale.SIMPLIFIED_CHINESE);  //Locale.CHINA  : zh_CN  //Locale.CHINESE: zh  testResourceBundle(resource);   //显示  //      }            private static void testResourceBundle(ResourceBundle resource) {  //取得指定关键字的value值  String userIdLabel = resource.getString("userIdLabel");  System.out.println(userIdLabel);   //取得所有key值  Enumeration enu = resource.getKeys();   System.out.println("keys:");  while(enu.hasMoreElements()) {      System.out.println(enu.nextElement());  }      }  }
로그인 후 복사

설명:

1. 이해를 돕기 위해 Java 소스 코드에 설명을 넣었으며 여기서는 자세히 설명하지 않습니다.

2. 중국어 리소스 파일 TestProperties_zh_CN.properties의 경우 Native2ascii 명령을 사용하여 ASCII 코드로 변환해야 합니다. 예:

native2ascii -encoding UTF-8 c:TestProperties_zh_CN.properties c:javacomtestpropertiesTestProperties_zh_CN.properties

native2ascii의 자세한 사용법은 여기에서 자세히 다루지 않겠습니다.

3. 위의 세 파일을 c:javacomtestproperties 디렉터리에 저장합니다. 그 중 TestProperties_zh_CN.properties는 Native2ascii로 변환한 파일이다.

4, 컴파일하고 실행하면 화면에 표시됩니다:

c:javajavac com.test.properties.TestProperties.java

c:javajava com.test.properties.TestProperties
---기본 로케일-- -
사용자 ID:
keys:
userNameLabel
userIdLabel
---Locale.SIMPLIFIED_CHINESE---
사용자 ID:
keys:
userNameLabel
userIdLabel

위 내용은 Java가 속성 리소스 파일을 처리하는 방법의 상세 내용입니다. 자세한 내용은 PHP 중국어 웹사이트의 기타 관련 기사를 참조하세요!

관련 라벨:
원천:yisu.com
본 웹사이트의 성명
본 글의 내용은 네티즌들의 자발적인 기여로 작성되었으며, 저작권은 원저작자에게 있습니다. 본 사이트는 이에 상응하는 법적 책임을 지지 않습니다. 표절이나 침해가 의심되는 콘텐츠를 발견한 경우 admin@php.cn으로 문의하세요.
인기 튜토리얼
더>
최신 다운로드
더>
웹 효과
웹사이트 소스 코드
웹사이트 자료
프론트엔드 템플릿