JAVA操作properties文件

本文详细介绍了Java中Properties文件的应用及操作方法,包括文件格式、常用API解释,并提供了读取和写入Properties文件的示例代码。

java中的properties文件是一种配置文件,主要用于表达配置信息,文件类型为*.properties,格式为文本文件,文件的内容是格式是"键=值"的格式,在properties

文件中,可以用"#"来作注释,properties文件在Java编程中用到的地方很多,操作很方便。
一、properties文件

test.properties
------------------------------------------------------
#################################
#  工商报表应用IcisReport的配置文件#
#  日期:2006年11月21日#
#################################
#
#  说明:业务系统TopIcis和报表系统IcisReport是分离的
#  可分开部署到不同的服务器上,也可以部署到同一个服务
#  器上;IcisReprot作为独立的web应用程序可以使用任何
#  的Servlet容器或者J2EE服务器部署并单独运行,也可以
#  通过业务系统的接口调用作为业务系统的一个库来应用.
#
#  IcisReport的ip
IcisReport.server.ip=192.168.3.143
#  IcisReport的端口
IcisReport.server.port=8080
#  IcisReport的上下文路径
IcisReport.contextPath=/IcisReport

------------------------------------------------------
Properties类的重要方法
Properties类存在于胞Java.util 中,该类继承自Hashtable
1.getProperty ( String  key) ,   用指定的键在此属性列表中搜索属性。也就是通过参数key ,得到key 所对应的value。
2.load ( InputStream  inStream) ,从输入流中读取属性列表(键和元素对)。通过对指定的文件(比如说上面的test.properties 文件)进行装载来获取该文

件中的所有键- 值对。以供getProperty ( String  key) 来搜索。
3.setProperty ( String  key, String  value) ,调用Hashtable 的方法put 。他通过调用基类的put方法来设置键- 值对。
4.store ( OutputStream  out, String  comments) ,   以适合使用load 方法加载到Properties 表中的格式,将此Properties 表中的属性列表(键和元素

对)写入输出流。与load 方法相反,该方法将键- 值对写入到指定的文件中去。
5.clear () ,清除所有装载的键- 值对。该方法在基类中提供。
-------------------------------

二、操作properties文件的java方法

读属性文件
Propertiesprop = new Properties();
InputStream in = getClass().getResourceAsStream("/IcisReport.properties");
prop.load(in);
Set keyValue = prop.keySet();
for (Iterator it = keyValue.iterator();it.hasNext();)
{
String key = (String) it.next();
}
------------------------
outputFile = newFileOutputStream(fileName);
propertie.store(outputFile,description);
outputFile.close();
-----------------------------------------------------------------------------------------
Class.getResourceAsStream("/some/pkg/resource.properties");
ClassLoader.getResourceAsStream("some/pkg/resource.properties");
java.util.ResourceBundlers = java.util.ResourceBundle.getBundle("some.pkg.resource");
rs.getString("xiaofei");
-----------------------------------------------------------------------------------------
写属性文件
Configuration saveCf = newConfiguration();
saveCf.setValue("min","10");
saveCf.setValue("max","1000");
saveCf.saveFile(".\config\save.perperties","test");

总结:javaproperties文件需要放到classpath下面,这样程序才能读取到,有关classpath实际上就是java类或者库的存放路径,在java工程中,properties放到

class文件一块。在web应用中,最简单的方法是放到web应用的WEB-INF\classes目录下即可,也可以放在其他文件夹下面,这时候需要在设置classpath环境变量的

时候,将这个文件夹路径加到classpath变量中,这样也也可以读取到。在此,你需要对classpath有个深刻理解,classpath绝非系统中刻意设定的那个系统环境变

量,WEB-INF\classes其实也是,java工程的class文件目录也是。

发个例子大家自己看哈.
package control;

importjava.io.BufferedInputStream;
import java.io.FileInputStream;
import java.io.FileOutputStream;
import java.io.IOException;
import java.io.InputStream;
import java.io.OutputStream;
import java.util.Enumeration;
import java.util.Properties;

publicclass TestMain {
 
 //根据key读取value
 public static String readValue(StringfilePath,String key) {
  Properties props = new Properties();
        try {
         InputStream in = newBufferedInputStream (new FileInputStream(filePath));
         props.load(in);
         String value = props.getProperty(key);
           System.out.println(key+value);
            return value;
        } catch (Exception e) {
         e.printStackTrace();
         return null;
        }
 }
 
 //读取properties的全部信息
    public static voidreadProperties(String filePath) {
     Properties props = new Properties();
        try {
         InputStream in = newBufferedInputStream (new FileInputStream(filePath));
         props.load(in);
            Enumeration en =props.propertyNames();
             while (en.hasMoreElements()){
              String key = (String)en.nextElement();
                    String Property =props.getProperty (key);
                   System.out.println(key+Property);
                }
        } catch (Exception e) {
         e.printStackTrace();
        }
    }

    //写入properties信息
    public static voidwriteProperties(String filePath,String parameterName,String parameterValue) {
     Properties prop = new Properties();
     try {
      InputStream fis = newFileInputStream(filePath);
            //从输入流中读取属性列表(键和元素对)
            prop.load(fis);
            //调用 Hashtable 的方法 put。使用 getProperty 方法提供并行性。
            //强制要求为属性的键和值使用字符串。返回值是 Hashtable 调用 put 的结果。
            OutputStream fos = newFileOutputStream(filePath);
            prop.setProperty(parameterName,parameterValue);
            //以适合使用 load 方法加载到 Properties 表中的格式,
            //将此 Properties 表中的属性列表(键和元素对)写入输出流
            prop.store(fos, "Update'" + parameterName + "' value");
        } catch (IOException e) {
         System.err.println("Visit"+filePath+" for updating "+parameterName+" valueerror");
        }
    }

    public static void main(String[] args) {
    readValue("info.properties","url");
       writeProperties("info.properties","age","21");
        readProperties("info.properties");
       System.out.println("OK");
    }

 发个例子大家自己看哈.

packagecontrol;

importjava.io.BufferedInputStream;
import java.io.FileInputStream;
import java.io.FileOutputStream;
import java.io.IOException;
import java.io.InputStream;
import java.io.OutputStream;
import java.util.Enumeration;
import java.util.Properties;

publicclass TestMain {
 
 //根据key读取value
 public static String readValue(StringfilePath,String key) {
  Properties props = new Properties();
        try {
         InputStream in = newBufferedInputStream (new FileInputStream(filePath));
         props.load(in);
         String value = props.getProperty(key);
           System.out.println(key+value);
            return value;
        } catch (Exception e) {
         e.printStackTrace();
         return null;
        }
 }
 
 //读取properties的全部信息
    public static voidreadProperties(String filePath) {
     Properties props = new Properties();
        try {
         InputStream in = newBufferedInputStream (new FileInputStream(filePath));
         props.load(in);
            Enumeration en =props.propertyNames();
             while (en.hasMoreElements()){
              String key = (String)en.nextElement();
                    String Property =props.getProperty (key);
                   System.out.println(key+Property);
                }
        } catch (Exception e) {
         e.printStackTrace();
        }
    }

    //写入properties信息
    public static voidwriteProperties(String filePath,String parameterName,String parameterValue) {
     Properties prop = new Properties();
     try {
      InputStream fis = newFileInputStream(filePath);
            //从输入流中读取属性列表(键和元素对)
            prop.load(fis);
            //调用 Hashtable 的方法 put。使用 getProperty 方法提供并行性。
            //强制要求为属性的键和值使用字符串。返回值是 Hashtable 调用 put 的结果。
            OutputStream fos = newFileOutputStream(filePath);
           prop.setProperty(parameterName, parameterValue);
            //以适合使用 load 方法加载到 Properties 表中的格式,
            //将此 Properties 表中的属性列表(键和元素对)写入输出流
            prop.store(fos, "Update'" + parameterName + "' value");
        } catch (IOException e) {
         System.err.println("Visit"+filePath+" for updating "+parameterName+" valueerror");
        }
    }

    public static void main(String[] args) {
    readValue("info.properties","url");
       writeProperties("info.properties","age","21");
       readProperties("info.properties" );
       System.out.println("OK");
    }
}

 

【完美复现】面向配电网韧性提升的移动储能预布局与动态调度策略【IEEE33节点】(Matlab代码实现)内容概要:本文介绍了基于IEEE33节点的配电网韧性提升方法,重点研究了移动储能系统的预布局与动态调度策略。通过Matlab代码实现,提出了一种结合预配置和动态调度的两阶段优化模型,旨在应对电网故障或极端事件时快速恢复供电能力。文中采用了多种智能优化算法(如PSO、MPSO、TACPSO、SOA、GA等)进行对比分析,验证所提策略的有效性和优越性。研究不仅关注移动储能单元的初始部署位置,还深入探讨其在故障发生后的动态路径规划与电力支援过程,从而全面提升配电网的韧性水平。; 适合人群:具备电力系统基础知识和Matlab编程能力的研究生、科研人员及从事智能电网、能源系统优化等相关领域的工程技术人员。; 使用场景及目标:①用于科研复现,特别是IEEE顶刊或SCI一区论文中关于配电网韧性、应急电源调度的研究;②支撑电力系统在灾害或故障条件下的恢复力优化设计,提升实际电网应对突发事件的能力;③为移动储能系统在智能配电网中的应用提供理论依据和技术支持。; 阅读建议:建议读者结合提供的Matlab代码逐模块分析,重点关注目标函数建模、约束条件设置以及智能算法的实现细节。同时推荐参考文中提及的MPS预配置与动态调度上下两部分,系统掌握完整的技术路线,并可通过替换不同算法或测试系统进一步拓展研究。
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值