class systeme { public static void main( String args[] ) { System.out.println("Version Java : "+ System.getProperty("java.version" )); System.out.println("Url vendeur : "+ System.getProperty("java.vendor.url" )); System.out.println("Version classe : "+ System.getProperty("java.class.version" )); System.out.println("OS : "+ System.getProperty("os.name" )); System.out.println("Architecture : "+ System.getProperty("os.arch")); System.out.println("Sep fichier : "+ System.getProperty("file.separator" )); System.out.println("Sep path : "+ System.getProperty("path.separator" )); System.out.println("Sep ligne : "+ System.getProperty("line.separator" )); } }