Kurzer Code-Schnippsel, um eine properties-Datei, die in einem Paket aus einer JAR-Datei steckt, einzulesen:
1 2 3 4 5 6 7 8 9 10 | Properties properties = new Properties(); try { InputStream is = this.getClass().getClassLoader().getResourceAsStream("com/oberprima/upload/client/configuration/config.properties"); properties.load(is); } catch (IOException ex) { System.out.println(ex.getLocalizedMessage()); } |