Java Properties 类

返回上一级

Java Properties 继承于 Hashtable 表示一个持久的属性集。属性列表中每个键及其对应值都是一个字符串

Properties 类被许多 Java 类使用

例如,在获取环境变量时它就作为 System.getProperties() 方法的返回值

Properties 定义如下实例变量

Properties defaults;

这个变量持有一个 Properties 对象相关的默认属性列表

Properties 类定义了两个构造方法

  1. 第一个构造方法没有默认值

    Properties()
    
  2. 第二个构造方法使用 propDefault 作为默认值

    Properties(Properties propDefault)
    

两种情况下,属性列表都为空:

除了从 Hashtable 中所定义的方法,Properties 定义了以下方法

序号 方法描述
1 String getProperty(String key)

用指定的键在此属性列表中搜索属性
2 String getProperty(String key, String defaultProperty)

用指定的键在属性列表中搜索属性
3 void list(PrintStream streamOut)

将属性列表输出到指定的输出流
4 void list(PrintWriter streamOut)

将属性列表输出到指定的输出流
5 void load(InputStream streamIn) throws IOException

从输入流中读取属性列表 ( 键和元素对 )
6 Enumeration propertyNames()

按简单的面向行的格式从输入字符流中读取属性列表 ( 键和元素对 )
7 Object setProperty(String key, String value)

调用 Hashtable 的方法 put
8 void store(OutputStream streamOut, String description)

以适合使用 load(InputStream)方法加载到 Properties 表中的格式,将此 Properties 表中的属性列表(键和元素对)写入输出流

范例

下面的代码演示了 Properties 类的基本使用

import java.util.*;

public class PropDemo {

   public static void main(String args[]) {
      Properties capitals = new Properties();
      Set states;
      String str;

      capitals.put("Illinois", "Springfield");
      capitals.put("Missouri", "Jefferson City");
      capitals.put("Washington", "Olympia");
      capitals.put("California", "Sacramento");
      capitals.put("Indiana", "Indianapolis");

      // Show all states and capitals in hashtable.
      states = capitals.keySet(); // get set-view of keys
      Iterator itr = states.iterator();
      while(itr.hasNext()) {
         str = (String) itr.next();
         System.out.println("The capital of " +
            str + " is " + capitals.getProperty(str) + ".");
      }
      System.out.println();

      // look for state not in list -- specify default
      str = capitals.getProperty("Florida", "Not Found");
      System.out.println("The capital of Florida is "
          + str + ".");
   }
}

编译运行以上 Java 代码,输出结果如下

The capital of Missouri is Jefferson City.
The capital of Illinois is Springfield.
The capital of Indiana is Indianapolis.
The capital of California is Sacramento.
The capital of Washington is Olympia.

The capital of Florida is Not Found.

返回上一级

Java 基础教程

关于   |   FAQ   |   我们的愿景   |   广告投放   |  博客

  简单教程,简单编程 - IT 入门首选站

Copyright © 2013-2022 简单教程 twle.cn All Rights Reserved.