All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.github.diceproject.qt.util.PropertiesFromXML Maven / Gradle / Ivy

package com.github.diceproject.qt.util;
//author: yifan

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

public class PropertiesFromXML {
	
	public Properties getPropertiesFromXML() throws Exception{
		  
		    final Properties props=new Properties();		    
		    InputStream in = (InputStream) getClass().getResourceAsStream("/qtlib-config.xml");
		    props.loadFromXML(in);
		    in.close();
		    
		    return props;
	}

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy