properties配置文件中动态存取数据

星期五 2007年03月16日

properties配置文件中动态存取数据

 

import java.io.IOException;
import java.util.Properties;
import java.io.FileInputStream;
import java.io.FileOutputStream;
import java.io.File;

/**
 * <p>Title:在indexerConfig.properties配置文件中动态存取数据 </p>
 *
 * <p>Description: 可以动态存取数据,key所对应的值为value</p>
 *
 * @version 1.0
 */
public class DbTextIndexerConfig {

    private static String nubmerStrBefore;
    private static String nubmerStrNow;


    public static boolean LoadConfig(int key,int value){
        Properties properties = new Properties();
        FileInputStream fin = null;
        FileOutputStream fos = null;

        try{
            fin = new FileInputStream("indexerConfig.properties");
            properties.load(fin);

            fos = new FileOutputStream("indexerConfig.properties");
            nubmerStrBefore = properties.getProperty(Integer.toString(value));
            nubmerStrNow =(String) properties.setProperty(Integer.toString(key),Integer.toString(value));
            properties.store(fos,Integer.toString(key));

                  }catch(Exception e){
            e.printStackTrace();
            return false;
        }finally{
            if (fin!=null){
                try {
                    fin.close();
                } catch (IOException ex) {
                }
            }
        }
        return true;
    }


  public static String getNubmerStrBefore() {
            return nubmerStrBefore;
        }

  public static String getNubmerStrNow() {
            return nubmerStrNow;
    }

  /**
   * 测试
   * @param args String[]
   */
  public static void main(String args[]){
        DbTextIndexerConfig.LoadConfig(402,4000);
    }

}

 
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值