import java.io.FileInputStream; import java.util.Properties; class Program01 { public static void main(String[] args) throws Exception { FileInputStream propFile = new FileInputStream( "beallitasok.txt"); Properties p = new Properties(System.getProperties()); p.load(propFile); // Rendszerbeállítások érvényesítése System.setProperties(p); // Új beállítások System.getProperties().list(System.out); } }