Properties 클래스 총화

Properties 류 소결
현재 자바 util. Properties 류 와 그 확장 지식 을 사용 하 는 임무 가 있 습 니 다. 여기 서 예비 지식 을 정리 하고 며칠 후에 comons configuration 을 정리 하 겠 습 니 다.
1. Properties 소개
java. util. Properties 는 java. util. Hashtable 에서 계승 합 니 다.
Properties 클래스 는 지속 적 인 속성 집합 을 표시 합 니 다. Properties 는 흐름 에 저장 하거나 흐름 에서 불 러 올 수 있 습 니 다. 속성 목록 의 모든 키 와 대응 하 는 값 은 문자열 입 니 다.
기본 방법
2.1 입력 흐름 에서 속성 파일 을 불 러 오 는 방법
load (InputStream is) 방법 사용 하기:
자바 코드
  • Properties properties = new Properties();   
  • InputStream is = new FileInputStream("conn.properties");   
  • properties.load(is);   
  • is.close();  
  • Properties properties = new Properties();
    InputStream is = new FileInputStream("conn.properties");
    properties.load(is);
    is.close();
    

    2.2 속성 파일 의 값 을 어떻게 읽 습 니까?
    getProperties (String key) 방법 사용 하기:
    자바 코드
  • String temp = properties.getProperties(String key);  
  • String temp = properties.getProperties(String key);
    

    < 비고 > 다시 불 러 오 는 방법 getProperties (String key, String default) 방법 은 값 을 조회 하지 못 한 상태 에서 default 로 돌아 갑 니 다.
    즉, null = = properties. getProperties (String key);
    default = = properties. getProperties (String key, String default) 가 있 습 니 다.
    2.3 속성 파일 의 모든 키 를 가 져 오 는 방법
    property Names () 방법 을 사용 하면 키 의 열 거 를 되 돌려 줍 니 다.
    자바 코드
  • Enumeration enumeration = properties.propertyNames();  
  • Enumeration enumeration = properties.propertyNames();
    

    2.4 속성 파일 의 값 을 어떻게 수정 합 니까?
    쓰다
    자바 코드
  • setProperties(String key, String value)  

  • 방법
    < 주 > 이 방법 이 호출 하 는 Hashtable put 방법 입 니 다. 키 가 존재 하면 값 을 수정 합 니 다.키 가 존재 하지 않 으 면 값 을 추가 합 니 다.
    2.5 출력 흐름 에 속성 파일 을 저장 하 는 방법
    store (OutputStream os, String description) 방법 사용 하기:
    자바 코드
  • Properties properties = new Properties();   
  • OutputStream os = new FileOutputStream("test.properties");   
  • String description = "store properties to test.properties";   
  • properties.store(os, description);   
  • os.close();  
  • setProperties(String key, String value)

    2.6 모든 값 을 비 우 는 방법
    쓰다
    자바 코드
  • clear()  

  • 방법
    < 주 > 이 방법 은 Hashtable 의 clear () 방법 을 계승 합 니 다. 해시 표를 비 웁 니 다.

    좋은 웹페이지 즐겨찾기