Java Properties Files
Jump to navigation
Jump to search
my_app.properties
scp-aetitle=coil ipaddress-autodetect=true trial=coil #export-enabled=false #anonymizer-enabled=false scp-port=3333 #destination=www.hithere.com scp-ipaddress=123.45.67.89 save-enabled=true
Access a .properties file:
import java.util.Properties;
...
Properties props = new Properties;
props.load(new FileInputStream("my_app.properties"));
...
String aeTitle = props.getProperty("scp-aetitle");
boolean ipAddressAutodetect = (new Boolean(props.getProperty("ipaddress-autodetect").booleanValue();