Is it possible to stack loaded properties in Java? For instance can I do:
Properties properties = new Properties(); properties.load(new FileInputStream(\"file1.
Actually, yes. You can do this. If any of the properties overlap, the newer loaded property will take place of the older one.