I have a properties file with some boolean values. AFAIK, java.util.properties does not have anything like getBoolean. Is there any other Java library that can do this? Or maybe there is another way, except of doAction = "true".equals(yourProperties.getProperty("doaction"));
I have a properties file with some boolean values. AFAIK, java.util.properties does not have
Share
Apache Commons Configuration provides that on top of
java.util.Properties.