• 大小: 5.73KB
    文件类型: .zip
    金币: 1
    下载: 0 次
    发布日期: 2021-02-20
  • 语言: Java
  • 标签:

资源简介

Java 读取属性文件的单个属性值(基础篇-实例440).zip

资源截图

代码片段和文件信息

import java.io.*;
import java.util.*;

public class GetProperties {
    
    public String getProperties(String keyName) {
        InputStream ins = getClass().getResourceAsStream(
                “ApplicationResources.properties“); // 根据属性文件创建InputStream对象
        Properties props = new Properties(); // 创建Properties对象
        String value = ““;
        try {
            props.load(ins); // 从输入流中读取属性文件中信息
            value = props.getProperty(keyName); // 获取指定参数的属性值
        } catch (IOException e) {
            
            e.printStackTrace();
        }
        return value;
    }
    
}

 属性            大小     日期    时间   名称
----------- ---------  ---------- -----  ----
     文件         301  2010-09-10 15:22  .classpath
     文件         379  2010-09-10 15:22  .project
     文件         629  2010-09-10 15:22  .settings\org.eclipse.jdt.core.prefs
     文件         143  2010-09-10 15:22  bin\ApplicationResources.properties
     文件        1080  2013-11-21 08:42  bin\GetProperties.class
     文件         737  2013-11-21 08:42  bin\GetPropertiesframe$1.class
     文件        2453  2013-11-21 08:42  bin\GetPropertiesframe.class
     文件         143  2010-09-10 15:22  src\ApplicationResources.properties
     文件         655  2010-09-10 15:22  src\GetProperties.java
     文件        3236  2010-09-10 15:22  src\GetPropertiesframe.java

评论

共有 条评论