當前位置: 首頁>>代碼示例>>Java>>正文


Java XMLConfiguration.getLong方法代碼示例

本文整理匯總了Java中org.apache.commons.configuration.XMLConfiguration.getLong方法的典型用法代碼示例。如果您正苦於以下問題:Java XMLConfiguration.getLong方法的具體用法?Java XMLConfiguration.getLong怎麽用?Java XMLConfiguration.getLong使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在org.apache.commons.configuration.XMLConfiguration的用法示例。


在下文中一共展示了XMLConfiguration.getLong方法的2個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的Java代碼示例。

示例1: initSimulator

import org.apache.commons.configuration.XMLConfiguration; //導入方法依賴的package包/類
/**
   * initializes the fields and starts the simulator.
   *
   * @throws SimulatorException if the event input file could not be opened.
   */
   private void initSimulator() throws SimulatorException {
      // load properties from config file
      XMLConfiguration config = new XMLConfiguration();
      URL fileurl = ResourceLocator.getURL(configFile, defaultConfigFile,
         this.getClass());
      try {
         config.load(fileurl);
      } catch (ConfigurationException ce) {
         throw new SimulatorException("Can not load config file '" + configFile + "'.");
      }

// get properties
    String file = config.getString("batchfile");
    cycles = config.getLong("iterations");

    // find batchfile
    URL batchfileurl = ResourceLocator.getURL(file, file, this.getClass());

try {
       eventFile = new File(batchfileurl.toURI());
    } catch (URISyntaxException e1) {
       throw new SimulatorException("Can not creat URI of batchfile '" + file + "'.");
    }
rfidThread = null;
threadRunning = false;
stopRequested = false;

      try {
          // tries to open file
          FileReader in = new FileReader(eventFile);
          in.close();

          // start simulator thread
          start();
      } catch (IOException e) {
          throw new SimulatorException("Cannot open event file '"+file+"': "+e);
      }
   }
 
開發者ID:Fosstrak,項目名稱:fosstrak-hal,代碼行數:44,代碼來源:BatchSimulator.java

示例2: getParameterValue

import org.apache.commons.configuration.XMLConfiguration; //導入方法依賴的package包/類
public static Object getParameterValue(XMLConfiguration config, int currentRule, int currentParameter, String parameterType) throws Exception {
		String key = "AccessControlRules.AccessControlRule(" + 
			currentRule + ").Parameters.Parameter(" + currentParameter + ")[@value]";
		Object parameterValue;
		if("String".equalsIgnoreCase(parameterType)) {
			parameterValue = config.getString(key);
		} else if("StringArray".equalsIgnoreCase(parameterType)) {
			parameterValue = config.getStringArray(key);
		} else if("Boolean".equalsIgnoreCase(parameterType)){ 
			parameterValue = config.getBoolean(key);
		} else if("Byte".equalsIgnoreCase(parameterType)){ 
			parameterValue = config.getByte(key);
		} else if("Int".equalsIgnoreCase(parameterType)){ 
			parameterValue = config.getInt(key);
		} else if("Long".equalsIgnoreCase(parameterType)){ 
			parameterValue = config.getLong(key);
		} else if("Float".equalsIgnoreCase(parameterType)){ 
			parameterValue = config.getFloat(key);
		} else if("Double".equalsIgnoreCase(parameterType)){ 
			parameterValue = config.getDouble(key);
		} else if("BigDecimal".equalsIgnoreCase(parameterType)){ 
			parameterValue = config.getBigDecimal(key);
		} else if("BigInteger".equalsIgnoreCase(parameterType)){ 
			parameterValue = config.getBigInteger(key);
		} else if("Date".equalsIgnoreCase(parameterType)){
			parameterValue = java.text.DateFormat.getDateInstance().parse(config.getString(key));
		} else if("Time".equalsIgnoreCase(parameterType)){
			java.text.SimpleDateFormat sdf = new java.text.SimpleDateFormat("h:mm a");
			parameterValue = sdf.parseObject(config.getString(key)); 
//			parameterValue = java.text.DateFormat.getTimeInstance().parse(config.getString(key));
		}		
		//add timestamp. check for other stuff.
		else {
			throw new IllegalArgumentException("Unable to load the key \"" + key 
					+ "\", because " + "the type \"" + parameterType + 
					"\" was not recognized." );
		}
		return parameterValue;
	}
 
開發者ID:abimael93,項目名稱:owasp-esapi-java,代碼行數:40,代碼來源:ACRParameterLoaderHelper.java


注:本文中的org.apache.commons.configuration.XMLConfiguration.getLong方法示例由純淨天空整理自Github/MSDocs等開源代碼及文檔管理平台,相關代碼片段篩選自各路編程大神貢獻的開源項目,源碼版權歸原作者所有,傳播和使用請參考對應項目的License;未經允許,請勿轉載。