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

📄 configfilereader.java

📁 java实现的遗传算法
💻 JAVA
字号:
/*
 * This file is part of JGAP.
 *
 * JGAP offers a dual license model containing the LGPL as well as the MPL.
 *
 * For licencing information please see the file license.txt included with JGAP
 * or have a look at the top of class org.jgap.Chromosome which representatively
 * includes the JGAP license policy applicable for any file delivered with JGAP.
 */
package org.jgap.data.config;

import java.util.*;
import java.io.*;

/**
 * This is a Singleton Helper class to read a JGAP config file and provide a
 * simple interface to the config properties.
 *
 * @author Siddhartha Azad
 * @since 2.3
 */
public class ConfigFileReader {
  private final static String CVS_REVISION = "$Revision: 1.2 $";

  // Name of the config file to read
  private String m_fileName;

  // Properties read from the config file
  private Properties m_props;

  // namespace of the property
  private String m_ns;

  /**
   * Singleton Instance of ConfigFileReader
   */
  private static ConfigFileReader cfReader;

  /**
   * Method to create and access the Singleton ConfigFileReader instance.
   * @return instance of the ConfigFileReader
   *
   * @author Siddhartha Azad
   * @since 2.3
   */
  public static ConfigFileReader instance() {
    if (cfReader == null) {
      cfReader = new ConfigFileReader();
    }
    return cfReader;
  }

  /**
   * Private Constructor.@param _fileName Name of the config file.
   *
   * @author Siddhartha Azad
   * @since 2.3
   */
  private ConfigFileReader() {
    m_props = new Properties();
  }

  /**
   * Retrieve the value for the property with the name as in param name.
   * @author Siddhartha Azad.
   * @param a_name Name of the property of which the value is required.
   * @return value for the property with the name as in param name, null if
   * property not found.
   *
   * @author Siddhartha Azad
   * @since 2.3
   */
  public String getValue(String a_name) {
    String tmpName = m_ns + "." + a_name;
    String val = m_props.getProperty(tmpName);
    return val;
  }

  /**
   * Retrieve the values for the property with the name as in param name.
   * @author Siddhartha Azad.
   * @param name Name of the property of which the value is required.
   * @return ArrayList of Strings with values for the property with the name as
   * in param name, null if property not found.
   * */
  public ArrayList getValues(String name) {
    String val = "";
    boolean done = false;
    String tmpName = "";
    int idx = 0;
    ArrayList values = new ArrayList();
    while (!done) {
      tmpName = m_ns + "." + name + "[" + idx + "]";
      val = m_props.getProperty(tmpName);
      if (val == null) {
        done = true;
      }
      else {
        values.add(val);
        idx++;
      }
    }
    if (idx == 0) {
      return null;
    }
    else {
      return values;
    }
  }

  /**
   * Set the namespace for the properties that are being read from the
   * config file at this point.
   *
   * @param a_ns namespace for the properties being read
   *
   * @author Siddhartha Azad
   */
  public void setNS(String a_ns) {
    m_ns = a_ns;
  }

  /**
   * Set the config file to load from. Everytime this method is called,
   * properties are reloaded from the config file.
   *
   * @param a_fileName Name of the config file.
   * @throws ConfigException
   *
   * @author Siddhartha Azad
   * @since 2.3
   */
  public void setFileName(String a_fileName)
      throws ConfigException {
    m_fileName = a_fileName;
    load();
  }

  /**
   * Load the config properties file into a Properties instance.
   * @throws ConfigException
   *
   * @author Siddhartha Azad
   * @since 2.3
   */
  private void load()
      throws ConfigException {
    try {
      m_props.load(new FileInputStream(m_fileName));
    }
    catch (Exception ex) {
      String dir = new File(".").getAbsolutePath();
      throw new ConfigException("Error reading Config file " + m_fileName
                                + " in directory " + dir);
    }
  }
}

⌨️ 快捷键说明

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