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

资源简介

Java 向属性文件中添加信息(基础篇-实例441).zip

资源截图

代码片段和文件信息

import java.io.FileOutputStream;
import java.util.Properties;

public class SaveProperties {
    
    /**
     * @param args
     */
    
public void saveProperties(String key String value) {
    Properties properties = new Properties(); // 定义Properties对象
    properties.setProperty(key value); // 设置属性文件值
    try {
        FileOutputStream out = new FileOutputStream(
                “C://message.properties“);// 创建输出流对象
        properties.store(out “test“); // 将信息通过流写入到属性文件
        out.close(); // 关闭流
    } catch (Exception e) {
        e.printStackTrace();
    }
}
    
   
}

 属性            大小     日期    时间   名称
----------- ---------  ---------- -----  ----
     文件         301  2010-09-10 15:22  .classpath
     文件         379  2010-09-10 15:22  .project
     文件          47  2010-09-10 15:22  ApplicationResources.properties
     文件          47  2010-09-10 15:22  message.properties
     文件         629  2010-09-10 15:22  .settings\org.eclipse.jdt.core.prefs
     文件        1082  2013-11-21 08:42  bin\SaveProperties.class
     文件         742  2013-11-21 08:42  bin\SavePropertiesframe$1.class
     文件         705  2013-11-21 08:42  bin\SavePropertiesframe$2.class
     文件        2858  2013-11-21 08:42  bin\SavePropertiesframe.class
     文件         642  2010-09-10 15:22  src\SaveProperties.java
     文件        3103  2010-09-10 15:22  src\SavePropertiesframe.java

评论

共有 条评论