Java tools to read config files in .ini and .properties
import Cybertron.johan.conf.ConfigInterface;
import Cybertron.johan.conf.Reader.Loader;
ConfigInterface conf = Loader.load("conf.properties(or .ini)");
String key = conf.getString("key");
// Support Integer , Long , Boolean , Double
System.out.println(key);
[section] key=value ; annotation
key=value key.child=value