⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 sysproperties.java

📁 分页类,包括中文和英文及其他语言种类,便于二次开发及商业开发,
💻 JAVA
字号:
package com.laoer.comm.util;

import java.util.Properties;
import java.io.InputStream;
import java.io.FileInputStream;
import java.io.*;

/**
 * <p>Title: 天乙软件工作室公共包</p>
 *
 * <p>Description: 天乙软件工作室公共包</p>
 *
 * <p>Copyright: Copyright (c) 2004</p>
 *
 * <p>Company: 天乙软件工作室[LAOER.COM/TIANYISOFT.NET]</p>
 *
 * @author 龚天乙(Laoer)
 * @version 1.0
 */
public class SysProperties {

  private Properties props = new Properties();

  public SysProperties() {
    InputStream infile;
    String filePath = System.getProperty("sysProperties", "/sysinfo.properties");
    try {
      if (filePath != null && !filePath.equals("/sysinfo.properties")) {
        infile = new FileInputStream(filePath);
      }
      else {
        infile = getClass().getResourceAsStream(filePath);
      }
      props.load(infile);
      infile.close();
    }
    catch (FileNotFoundException ex) {
    }
    catch (IOException ex) {
    }
  }

  public String getProperty(String key) {
    return this.props.getProperty(key);
  }

  public String getProperty(String key, String defaultValue) {
    return this.props.getProperty(key, defaultValue);
  }

}

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -