InputStream oInputStream = this.getClass().getClassLoader().getResourceAsStream(pathRelativo); //../../test.properties
Properies pro = new Properties();
pro = oProperties.load(oInputStream);
cargar properties externo al .jar
Etiquetas:
java
InputStream oInputStream = this.getClass().getClassLoader().getResourceAsStream(pathRelativo); //../../test.properties
Properies pro = new Properties();
pro = oProperties.load(oInputStream);
Etiquetas:
java