JAVA 操作 properties 配置文件

2021-11-24  本文已影响0人  A_一只小菜鸟

一、简介

Java中的properties文件是一种纯文本格式的配置文件,主要用于表达配置信息,文件类型为 .properties,文件中内容的格式是 "键=值" 的格式。在properties文件中,可以用井号"#"来作注释

properties文件在Java编程中用到的地方很多,操作很方便。

二、Java的Properties类

属性映射(property map):是一种存储键/值对的数据结构。属性映射经常被用来存放配置信息。
它有三个特性:

实现属性映射的Java类被称为Properties(Java.util.Properties),此类是Java中比较重要的类,主要用于读取Java的配置文件,各种语言都有自己所支持的配置文件,配置文件中很多变量是经常改变的,这样做也是为了方便用户,让用户能够脱离程序本身去修改相关的变量设置。

此类是线程安全的:多个线程可以共享单个 Properties 对象而无需进行外部同步。

Properties类继承自Hashtable,如下:


20160730103449928.png

构造方法:
Properties() 创建一个无默认值的空属性列表。
Properties(Properties defaults) 创建一个带有指定默认值的空属性列表。

它提供了几个主要的方法:

因为 Properties 继承于 Hashtable,所以可对 Properties 对象应用 put 和 putAll 方法。但不建议使用这两个方法,因为它们允许调用者插入其键或值不是 String 的项。相反,应该使用 setProperty 方法。

如果在“不安全”的 Properties 对象(即包含非 String 的键或值)上调用 store 或 save 方法,则该调用将失败。

类似地,如果在“不安全”的 Properties 对象(即包含非 String 的键)上调用 propertyNames 或 list 方法,则该调用将失败。

Properties类提供默认值的两种机制:

  1. 在试图获得字符串值时制定默认值。(当键值不存在的时候,就会自动时用它)
String title=settings.getProperty("title","Default title");
  1. 如果觉得每次调用都指定默认值太麻烦,那么就可以将所有的默认值放在一个二级属性映射中,并在主映射的构造器中提供映射。且用它来构造查询表。
Properties defaultSettings=new properties();

defaultSettings.setProperty("width","300");

defaultSettings.setProperty("height","200");
...
Properties settings=new properties(defaultSettings);

注意:属性映射是没有层次结构的简单表。但是可以简单的使用java中的包命名方式来简单伪装一下层次结构。如果要存储复杂的配置信息,就应该使用Preferences类。

三、Java读取Properties文件的方法

Java虚拟机(JVM)有自己的系统配置文件(system.properties),我们可以通过下面的方式来获取。

//获取JVM的系统属性
import java.util.Properties;
public class ReadJVM {
    public static void main(String[] args) {
        Properties pps = System.getProperties();
        pps.list(System.out);
    }
}

使用J2SE API读取Properties文件的六种方法

1. 使用java.util.Properties类的load()方法

示例:

InputStream in = new BufferedInputStream(new FileInputStream(name));
Properties p = new Properties();p.load(in);

详细示例一:

import java.io.FileInputStream;
import java.io.FileNotFoundException;
import java.io.IOException;
import java.util.Enumeration;
import java.util.Properties;

/*
 * 新建一个配置文件(Test.properties),内容可以录入下面的语句。
 * name=JJ
 * Weight=4444
 * Height=3333
 * 
 * 注意:配置文件一定要放到项目的根目录。(此处没有异常处理)
 *
 */

public class getProperties {
    public static void main(String[] args) throws FileNotFoundException, IOException {
        Properties pps = new Properties();
        pps.load(new FileInputStream("Test.properties"));
        Enumeration enum1 = pps.propertyNames();//得到配置文件的名字
        while(enum1.hasMoreElements()) {
            String strKey = (String) enum1.nextElement();
            String strValue = pps.getProperty(strKey);
            System.out.println(strKey + "=" + strValue);
        }
    }
}

使用相对路径注意事项:(以项目根目录往下找)

image.png

详细示例二:

import java.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;

//关于Properties类常用的操作
public class TestProperties {

  //根据Key读取Value
  public static String GetValueByKey(String filePath, String key) {
      Properties pps = new Properties();
      try {
          InputStream in = new BufferedInputStream (new FileInputStream(filePath));  
          pps.load(in);
          String value = pps.getProperty(key);
          System.out.println(key + " = " + value);
          return value;
      }catch (IOException e) {
          e.printStackTrace();
          return null;
      }
  } 

  //读取Properties的全部信息
  public static void GetAllProperties(String filePath) throws IOException {
      Properties pps = new Properties();
      InputStream in = new BufferedInputStream(new FileInputStream(filePath));
      pps.load(in);
      Enumeration en = pps.propertyNames(); //得到配置文件的名字
      while(en.hasMoreElements()) {
          String strKey = (String) en.nextElement();
          String strValue = pps.getProperty(strKey);
          System.out.println(strKey + "=" + strValue);
      }  
  }

  //写入Properties信息
  public static void WriteProperties (String filePath, String pKey, String pValue) throws IOException {
      Properties pps = new Properties();
      InputStream in = new FileInputStream(filePath);
      //从输入流中读取属性列表(键和元素对) 
      pps.load(in);
      //调用 Hashtable 的方法 put。使用 getProperty 方法提供并行性。  
      //强制要求为属性的键和值使用字符串。返回值是 Hashtable 调用 put 的结果。
      OutputStream out = new FileOutputStream(filePath);
      pps.setProperty(pKey, pValue);
      //以适合使用 load 方法加载到 Properties 表中的格式,  
      //将此 Properties 表中的属性列表(键和元素对)写入输出流  
      pps.store(out, "Update " + pKey + " name");
  }

  public static void main(String [] args) throws IOException{
    WriteProperties("Test.properties","long", "212");
      String value = GetValueByKey("Test.properties", "name");
      System.out.println(value);
      GetAllProperties("Test.properties");
  }
}
2. 使用class变量的getResourceAsStream()方法

示例:

InputStream in = JProperties.class.getResourceAsStream(name);
Properties p = new Properties();
p.load(in);

详细示例:

import java.io.FileNotFoundException;
import java.io.IOException;
import java.util.Enumeration;
import java.util.Properties;
/*
 * 新建一个配置文件(Test.properties),内容可以录入下面的语句。
 * name=JJ
 * Weight=4444
 * Height=3333
 * 
 *注意:配置文件一定要放到当前目录下。(目录层次也可以从src下面的文件夹开始但不必包含src,且不必包含反斜杠开头。)
 *
 */
public class getProperties {

    public static void main(String[] args) throws FileNotFoundException, IOException {
        Properties pps = new Properties();
        pps.load(getProperties.class.getResourceAsStream("Test.properties"));
        Enumeration enum1 = pps.propertyNames();//得到配置文件的名字
        while(enum1.hasMoreElements()) {
            String strKey = (String) enum1.nextElement();
            String strValue = pps.getProperty(strKey);
            System.out.println(strKey + "=" + strValue);
        }
    }
}

相对路径注意事项:(此方式可以直接获取和此类在同一路径下的属性文件)

image.png
3. 使用class.getClassLoader()所得到的java.lang.ClassLoader的getResourceAsStream()方法

示例:

InputStream in = JProperties.class.getClassLoader().getResourceAsStream(name);
Properties p = new Properties();
p.load(in);

详细示例:

import java.io.FileNotFoundException;
import java.io.IOException;
import java.util.Enumeration;
import java.util.Properties;

/*
 * 新建一个配置文件(Test.properties),内容可以录入下面的语句。
 * name=JJ
 * Weight=4444
 * Height=3333
 * 
 *注意:配置文件一定要放到src目录下。
 *
 */

public class getProperties {

    public static void main(String[] args) throws FileNotFoundException, IOException {
        Properties pps = new Properties();
pps.load(getProperties.class.getClassLoader().getResourceAsStream("Test.properties"));
        Enumeration enum1 = pps.propertyNames();//得到配置文件的名字
        while(enum1.hasMoreElements()) {
            String strKey = (String) enum1.nextElement();
            String strValue = pps.getProperty(strKey);
            System.out.println(strKey + "=" + strValue);
        }
    }
}

相对路径注意事项:(此方式从src往下找,不能包含src)

image.png
4. 使用java.lang.ClassLoader类的getSystemResourceAsStream()静态方法

示例:

InputStream in = ClassLoader.getSystemResourceAsStream(name);
Properties p = new Properties();
p.load(in);

详细示例:

import java.io.FileNotFoundException;
import java.io.IOException;
import java.util.Enumeration;
import java.util.Properties;

/*
 * 新建一个配置文件(Test.properties),内容可以录入下面的语句。
 * name=JJ
 * Weight=4444
 * Height=3333
 * 
 * 注意:配置文件一定要放到src目录下。
 *
 */

public class getProperties {

    public static void main(String[] args) throws FileNotFoundException, IOException {
        Properties pps = new Properties();
        pps.load(ClassLoader.getSystemResourceAsStream("Test.properties"));
        Enumeration enum1 = pps.propertyNames();//得到配置文件的名字
        while(enum1.hasMoreElements()) {
            String strKey = (String) enum1.nextElement();
            String strValue = pps.getProperty(strKey);
            System.out.println(strKey + "=" + strValue);
        }
    }
}

相对路径注意事项:(和上面一至)

5. 使用java.util.ResourceBundle类的getBundle()方法

示例:

ResourceBundle rb = ResourceBundle.getBundle(name, Locale.getDefault());

这个类提供软件国际化的捷径。通过此类,可以使您所编写的程序可以:

说的简单点,这个类的作用就是读取资源属性文件(properties),然后根据.properties文件的名称信息(本地化信息),匹配当前系统的国别语言信息(也可以程序指定),然后获取相应的properties文件的内容。
注意:

比如:

myres_en_US.properties
myres_zh_CN.properties
myres.properties

当在中文操作系统下,如果myres_zh_CN.properties、myres.properties两个文件都存在,则优先会使用myres_zh_CN.properties,当myres_zh_CN.properties不存在时候,会使用默认的myres.properties。
没有提供语言和地区的资源文件是系统默认的资源文件。
资源文件都必须是ISO-8859-1编码,因此,对于所有非西方语系的处理,都必须先将之转换为Java Unicode Escape格式。转换方法是通过JDK自带的工具native2ascii.

详细示例:

20160731105416249.png
import java.util.Locale; 
import java.util.ResourceBundle; 

/** 
* 国际化资源绑定测试 
* 
* @author leizhimin 2009-7-29 21:17:42 
*/ 

public class TestResourceBundle { 

        public static void main(String[] args) { 
                Locale locale1 = new Locale("zh", "CN"); 
                ResourceBundle resb1 = ResourceBundle.getBundle("myres", locale1); 
                System.out.println(resb1.getString("aaa")); 
                ResourceBundle resb2 = ResourceBundle.getBundle("myres", Locale.getDefault()); 
                System.out.println(resb1.getString("aaa")); 
                Locale locale3 = new Locale("en", "US"); 
                ResourceBundle resb3 = ResourceBundle.getBundle("myres", locale3); 
                System.out.println(resb3.getString("aaa")); 
        } 
}

//如果使用默认的Locale,那么在英文操作系统上,会选择myres_en_US.properties或myres.properties资源文件
6. 使用java.util.PropertyResourceBundle类的构造函数

示例:

InputStream in = new BufferedInputStream(new FileInputStream(name));
ResourceBundle rb = new PropertyResourceBundle(in);

PropertyResourceBundle 是 ResourceBundle的 具体子类,是通过对属性文件的静态字符串管理来语言环境资源。
与其他资源包类型不同,不能为 PropertyResourceBundle 创建子类。相反,要提供含有资源数据的属性文件。ResourceBundle.getBundle 将自动查找合适的属性文件并创建引用该文件的 PropertyResourceBundle
具体用法如下:
创建一个属性文件:conf.properties,内容如下:

BODWEBSERVICEIPADDRESS=D:\\work\\LCEclipse\\workspace\\bodportal\\webapps\\bod\\WEB-INF\\classes\\sysconfig\\policyconfig.xml

在程序中,通过PropertyResourceBundle获取:

private final static String PROPERTIES_NAME = "conf";
public static String getProperties(String configName) {
    PropertyResourceBundle prbConfig = (PropertyResourceBundle) PropertyResourceBundle.getBundle(PROPERTIES_NAME);
    return prbConfig.getString(configName);
}

四、认识Locale

Locale 对象表示了特定的地理、政治和文化地区。需要 Locale 来执行其任务的操作称为语言环境敏感的 操作,它使用 Locale 为用户量身定制信息。例如,显示一个数值就是语言环境敏感的操作,应该根据用户的国家、地区或文化的风俗/传统来格式化该数值。
使用此类中的构造方法来创建 Locale:

创建完 Locale 后,就可以查询有关其自身的信息。使用 getCountry 可获取 ISO 国家代码,使用 getLanguage 则获取 ISO 语言代码。可用使用 getDisplayCountry 来获取适合向用户显示的国家名。同样,可用使用 getDisplayLanguage 来获取适合向用户显示的语言名。有趣的是,getDisplayXXX 方法本身是语言环境敏感的,它有两个版本:一个使用默认的语言环境作为参数,另一个则使用指定的语言环境作为参数。

五、中文资源文件的转码 native2ascii

这个工具用法如下:


20160731110545254.png

如果觉得麻烦,可以直接将中文粘贴到里面,回车就可以看到转码后的结果了。


20160731110630442.png

看明白这个了,就不在为struts等web框架的国际化而感到稀奇了。

六、示例

import java.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;

public class TestMain {

    // 根据key读取value
    public static String readValue(String filePath, String key) {
        Properties props = new Properties();
        try {
            InputStream in = new BufferedInputStream(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 void readProperties(String filePath) {
        Properties props = new Properties();
        try {
            InputStream in = new BufferedInputStream(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 void writeProperties(String filePath, String parameterName, String parameterValue) {
        Properties prop = new Properties();
        try {
            InputStream fis = new FileInputStream(filePath);
            // 从输入流中读取属性列表(键和元素对)
                  prop.load(fis);
            // 调用 Hashtable 的方法 put。使用 getProperty 方法提供并行性。
            // 强制要求为属性的键和值使用字符串。返回值是 Hashtable 调用 put 的结果。
            OutputStream fos = new FileOutputStream(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 + " value error");
        }
    }

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

七、项目使用

  1. 创建users.properties


    image.png
communication.protocol=https
communication.connection.timeout=10000
communication.connection.request.timeout=30000
communication.connection.socket.timeout=30000
csg.register.max.number=10000
csg.http.protocol.port=8669
csg.https.protocol.port=8443
thread.pool.size=20
reregister.timertask.peroid=30000
smm.port=40002
sslsocket.connection.timeout=8000
gateway.cpu.timeout=5000
handle.request.sleeptime=1
reportinfoqueue.isempty.sleeptime=10
gis.manufacturerLimit=5
gis.organizationLimit=5

#register pool size
register.pool.size=30
thread.add.split.time=40
queue.task.pool.size=4

#dist
dist.test.switch=off
dist.test.path=d:/json.txt
dist.test.path.bak=d:/json.bak.txt
dist.path=/SPG/NMconfig/json.txt
dist.path.bak=/SPG/NMconfig/json.bak.txt

#WeakDict
weak.path=/SPG/SGconfig/wps_user_pwd.txt
weak.path.bak=/SPG/SGconfig/wps_user_pwd.bak.txt

#WeakForm
form.path=/SPG/SGconfig/wps_web_form.txt
form.path.bak=/SPG/SGconfig/wps_web_form.bak.txt

#Performance test config
performance.test.switch=off
thread.coefficient=200
device.num=6000
test.device.address=192.168.2.246
platformserver.sleep.time=5
ddi.handle.request.sleep.time=1
ddi.queue.empty.sleep.time=10
thread.add.split.time=40
sso.connection.timeout=5000
sso.read.timeout=5000
#upload deviceinfo to vsvp
vsvp.device.report.peroid=30000

#performance:base/ha/byp/guo
device.performance=guo
device.port.num=6
#oemVer:huidun/jiuan/guo/qing/jierui/nologo
device.oem.ver=huidun

#upgrade.file.path=D:\\upload\\
upgrade.file.path=/usr/local/ftp/upgrade/
upgrade.file.num.limit=15
upgrade.connection.limit=20
upgrade.result.timeout.period=20
upgrade.rollback.timeout.period=10

#ftpserver.user.admin.homedirectory=D:\\test\\
#ftpserver.user.admin.enableflag=true
ftpserver.user.admin.userpassword=Smartsecuri@6300
ftpserver.user.admin.homedirectory=/usr/local/ftp/
ftpserver.user.admin.writepermission=true
ftpserver.user.admin.idletime=600000

# for upgrade file
ftpserver.user.adminup.userpassword=Smartsecuri6300
ftpserver.user.adminup.homedirectory=/usr/local/ftp/upgrade/
ftpserver.user.adminup.writepermission=true
ftpserver.user.adminup.idletime=600000

# 2019-09-25 FTP Server config for manufacturer dictionary
ftpserver.user.dist.userpassword=Smartsecuri6300
ftpserver.user.dist.homedirectory=/SPG/NMconfig
ftpserver.user.dist.enableflag=true
ftpserver.user.dist.writepermission=false
ftpserver.user.dist.maxloginnumber=30
ftpserver.user.dist.maxloginperip=2
ftpserver.user.dist.idletime=600000
ftpserver.user.dist.uploadrate=480000
ftpserver.user.dist.downloadrate=480000

# 2020-09-28 FTP Server config for weak dictionary
ftpserver.user.weakdist.userpassword=Smartsecuri6300
ftpserver.user.weakdist.homedirectory=/SPG/SGconfig
ftpserver.user.weakdist.enableflag=true
ftpserver.user.weakdist.writepermission=false
ftpserver.user.weakdist.maxloginnumber=30
ftpserver.user.weakdist.maxloginperip=2
ftpserver.user.weakdist.idletime=600000
ftpserver.user.weakdist.uploadrate=480000
ftpserver.user.weakdist.downloadrate=480000

#client running log FTP Server config
ftpserver.user.jkdlog.userpassword=Smartsecuri@6300
ftpserver.user.jkdlog.homedirectory=/usr/local/jkdlog/
ftpserver.user.jkdlog.enableflag=true
ftpserver.user.jkdlog.writepermission=true
ftpserver.user.jkdlog.maxloginnumber=20
ftpserver.user.jkdlog.maxloginperip=2
ftpserver.user.jkdlog.idletime=600000
ftpserver.user.jkdlog.uploadrate=102400
ftpserver.user.jkdlog.downloadrate=102400

gb35114.keyfile.path.csg=/SPG/NMconfig/GB35114/CSG/
gb35114.keyfile.path.asg=/SPG/NMconfig/GB35114/ASG/
gb35114.keyfile.path.ipc=/SPG/NMconfig/GB35114/IPC/
gb35114.keyfile.path.client=/SPG/NMconfig/GB35114/Client/

#alarm
alarm.limit.size=4000000
alarm.regionlist.limit.size=100000

#syslog
syslog.limit.size=4000000

#operationLog
operationlog.limit.size=4000000

#version
motherboard.version.path=/root/origindisk/version
software.version.path=/SPG/GLBconfig/version

#http|https
connect.time.out=3000
connecttion.request.time.out=100
socket.time.out=5000

#dashboard.html
dashboard.traffic.trend.data.size=12

#config issue max count
config.issue.max.count=3
config.issue.queue.task.add.period=60

# ipsource probe period, unit: minute
ipsource.probe.period=10
ipsource.probe.thread.size=40
ipsource.data.batch.save.size= 10000
ipsource.ip.probe.size= 256

#export number
alarm.round.export.number=250000

#excel params
excel.rowAccessWindowSize=1000
excel.query.pageSize=250000
excel.sheet.size=1000000

batch.count = 500

#asset batch size
asset.batch.size=1000
  1. 创建一个工具类去读取这个属性文件。
    UserPropertiesUtil.java
package com.smartsecuri.bp.utils;

import java.io.IOException;
import java.io.InputStream;
import java.util.Collections;
import java.util.HashSet;
import java.util.Properties;
import java.util.Set;

import org.apache.commons.logging.Log;
import org.apache.commons.logging.LogFactory;

import com.smartsecuri.bp.common.CommonUtils;

/**
 * @ClassName: UserPropertiesUtil
 * @Description:user.properties 工具类
 * @author chenfan
 *
 */
public class UserPropertiesUtil
{
    private final static Log logger = LogFactory.getLog(UserPropertiesUtil.class);

    /**
     * 线程池大小
     */
    public static final int THREAD_POOL_SIZE;

    /**
     * 测试设备数量
     */
    public static final int TEST_DEVICE_NUM;

    /**
     * 陪测设备IP
     */
    public static final String TEST_DEVICE_IP_ADDRESS;

    public static final long PLATFORMSERVER_SLEEP_TIME;

    /**
     * 处理请求后睡眠时间
     */
    public static final long DDI_HANDLE_REQUEST_SLEEP_TIME;

    /**
     * 队列中没有请求时睡眠时间
     */
    public static final long DDI_QUEUE_EMPTY_SLEEP_TIME;
    
    /**
     * The number of CPUs
     */
    public static final int NCPU = Runtime.getRuntime().availableProcessors();
    
    public static final long THREAD_ADD_SPLIT_TIME ;
    
    /**
     * 性能测试陪测开关 对应user.properties的值,默认值为off   on:打开-->true   !on:关闭 ->false
     */
    public static final boolean IS_PERFORMANCE_TEST_SWITCH_TRUN_ON;
    
    /**
     * 设备上报时间间隔
     */
    public static final int VSVP_DEVICE_REPORT_PEROID;

    /**
     * 演示环境屏蔽设备上报IP
     */
    public static final Set<String> DEMO_ENV_IPS;
    
    /**
     * 告警信息最大总量
     */
    public static final int ALARM_LIMIT_SIZE;
    /**
     * 系统日志信息最大总量
     */
    public static final int SYSLOG_LIMIT_SIZE;
    
    /**
     * 操作日志最大总量
     */
    public static final int OPERATIONLOG_LIMIT_SIZE;
    
    /**
     * 母盘版本号路径
     */
    public static final String MOTHERBOARD_VERSION_PATH;
    
    /**
     * 母盘版本号
     */
    public static final String MOTHERBOARD_VERSION;
    
    /**
     * 软件版本号路径
     */
    public static final String SOFTWARE_VERSION_PATH;
    
    /**
     * 软件版本号
     */
    public static final String SOFTWARE_VERSION;
    
    /**
     * 客户端运行日志存储路径
     */
    public static final String FTP_PATH;
    
    /**
     * 资产批量更新数量
     */
    public static final int ASSET_BATCH_SIZE;
    
    /**
     * 上海城运客户端登录第三方跳转URL
     */
    public static final String TERMINAL_LOGIN_THIRD_PARTY_URL;

    /**
     * 上海城运客户端登出第三方跳转URL
     */
    public static final String TERMINAL_LOGOUT_THIRD_PARTY_URL;

    /**
     * 上海城运客户端登录第三方参数编码格式
     */
    public static final String TERMINAL_LOGIN_THIRD_PARTY_URL_CHARSET;

    static
    {
        String threadPoolSize = "50";
        String deviceNum = "6000";
        String testAddrtess = "192.168.2.246";
        String platform = "0";
        String handleSleepTime = "1";
        String ddiQueueEmptySleepTime = "10";
        String splitTime = "40";
        String testSwitch = "OFF";
        String vsvpDeviceReportPeroid = "30000";
        String demoIP = "";
        String alarmMax="4000000";
        String syslogMax="4000000";
        String operationLogMax="4000000";
        String motherBoardPath="/root/origindisk/version";
        String softwarePath="/SPG/GLBconfig/version";
        String ftpPath ="/usr/local/jkdlog/";
        String batchSize ="1000";
        String terminalLoginThirdPartyUrl = "http://172.16.25.57:8087/api/users/login";
        String terminalLogoutThirdPartyUrl = "http://172.16.25.57:8087/api/users/logout?access_token=";
        String terminalLoginThirdPartyUrlCharset = "UTF-8";
        
        Properties pro = new Properties();
        InputStream is = null;
        try
        {
            is = UserPropertiesUtil.class.getResourceAsStream("/users.properties");
            pro.load(is);

            threadPoolSize = pro.getProperty("thread.coefficient");
            deviceNum = pro.getProperty("device.num");
            testAddrtess = pro.getProperty("test.device.address");
            platform = pro.getProperty("platformserver.sleep.time");
            handleSleepTime = pro.getProperty("ddi.handle.request.sleep.time");
            ddiQueueEmptySleepTime = pro.getProperty("ddi.queue.empty.sleep.time");
            splitTime = pro.getProperty("thread.add.split.time");
            testSwitch = pro.getProperty("performance.test.switch");
            vsvpDeviceReportPeroid = pro.getProperty("vsvp.device.report.peroid");
            demoIP = pro.getProperty("demo.env.ip");
            alarmMax = pro.getProperty("alarm.limit.size");
            operationLogMax = pro.getProperty("operationlog.limit.size");
            motherBoardPath = pro.getProperty("motherboard.version.path");
            softwarePath = pro.getProperty("software.version.path");
            ftpPath = pro.getProperty("ftpserver.user.jkdlog.homedirectory");
            
            batchSize = pro.getProperty("asset.batch.size");

            terminalLoginThirdPartyUrl = pro
                    .getProperty("terminal.login.third.party.url");
            terminalLogoutThirdPartyUrl = pro
                    .getProperty("terminal.logout.third.party.url");
        } catch (IOException e)
        {
            e.printStackTrace();
            threadPoolSize = "50";
            deviceNum = "6000";
            testAddrtess = "192.168.2.246";
            platform = "0";
            handleSleepTime = "1";
            ddiQueueEmptySleepTime = "10";
            splitTime = "40";
            testSwitch = "OFF";
            vsvpDeviceReportPeroid = "30000";
            alarmMax = "4000000";
            operationLogMax = "4000000";
            motherBoardPath="/root/origindisk/version";
            softwarePath = "/SPG/GLBconfig/version";
            ftpPath ="/usr/local/jkdlog/";
            
            batchSize = "1000";

            terminalLoginThirdPartyUrl = "http://172.16.25.57:8087/api/user/login";
            terminalLogoutThirdPartyUrl = "http://172.16.25.57:8087/api/users/logout?access_token=";
            terminalLoginThirdPartyUrlCharset = "UTF-8";
        } finally
        {
            if (is != null)
            {
                try
                {
                    is.close();
                } catch (IOException e)
                {
                    logger.error("静态块关流失败:", e);
                }
            }
        }

        THREAD_POOL_SIZE = Integer.parseInt(threadPoolSize);
        TEST_DEVICE_NUM = Integer.parseInt(deviceNum);
        TEST_DEVICE_IP_ADDRESS = testAddrtess;
        PLATFORMSERVER_SLEEP_TIME = Long.parseLong(platform);
        DDI_HANDLE_REQUEST_SLEEP_TIME = Long.parseLong(handleSleepTime);
        DDI_QUEUE_EMPTY_SLEEP_TIME = Long.parseLong(ddiQueueEmptySleepTime);
        THREAD_ADD_SPLIT_TIME = Long.parseLong(splitTime);
        IS_PERFORMANCE_TEST_SWITCH_TRUN_ON = testSwitch.equalsIgnoreCase("ON") ? true : false;
        VSVP_DEVICE_REPORT_PEROID = Integer.parseInt(vsvpDeviceReportPeroid);
        ALARM_LIMIT_SIZE = Integer.parseInt(alarmMax);
        SYSLOG_LIMIT_SIZE= Integer.parseInt(syslogMax);
        OPERATIONLOG_LIMIT_SIZE = Integer.parseInt(operationLogMax);
        MOTHERBOARD_VERSION_PATH = motherBoardPath;
        MOTHERBOARD_VERSION=CommonUtils.getMotherBoardVersion(MOTHERBOARD_VERSION_PATH);
        SOFTWARE_VERSION_PATH = softwarePath;
        SOFTWARE_VERSION = CommonUtils.getSoftwareVersion(SOFTWARE_VERSION_PATH);
        FTP_PATH = ftpPath;
        
        ASSET_BATCH_SIZE = Integer.parseInt(batchSize);
        
        TERMINAL_LOGIN_THIRD_PARTY_URL = terminalLoginThirdPartyUrl;
        TERMINAL_LOGOUT_THIRD_PARTY_URL = terminalLogoutThirdPartyUrl;
        TERMINAL_LOGIN_THIRD_PARTY_URL_CHARSET = terminalLoginThirdPartyUrlCharset;
        Set<String> demoEnvIps = new HashSet<String>();
        if (demoIP != null) 
        {
            String[] ips = demoIP.split("&");
            for (String ip : ips) 
            {
                demoEnvIps.add(ip);
            }
        }
        
        DEMO_ENV_IPS = Collections.unmodifiableSet(demoEnvIps);
    }
    
    public static void main(String[] args)
    {
        logger.info("IS_PERFORMANCE_TEST_SWITCH_TRUN_ON : " + IS_PERFORMANCE_TEST_SWITCH_TRUN_ON);
    }
}
  1. 使用:在其它类中直接调用使用
int poolSize = UserPropertiesUtil.THREAD_POOL_SIZE;
上一篇下一篇

猜你喜欢

热点阅读