super();
read(new PropertyResourceBundle(new FileInputStream(f)));
Properties p = System.getProperties(); Enumeration keys = bundle.getKeys(); while( keys.hasMoreElements() ) { String key = (String)keys.nextElement(); if( !p.containsKey(key) ) { p.put(key, bundle.getString(key)); } } System.setProperties(p);
read(ResourceBundle.getBundle(res));