unterschiedliche BS abfragen

Caruso_Nix

Mitglied
Hi,
wie fragt ihr im Programm auf unterschiedliche Betriebssysteme ab? bei mir ist das Problem, dass ich externe Programme ausführen lassen möchte und die über die Konsole starte.
Code:
   if (System.getProperty("os.name").compareToIgnoreCase("windows") > 0)
   {
      if ( System.getProperty("os.name").compareToIgnoreCase("nt") > 0 
  ||
  	System.getProperty("os.name").compareToIgnoreCase("2000") > 0 )
      {
  	command = "cmd.exe"; //win NT, 2000
      }
      else
  	command = "command.com"; //win 95, 98, ME etc.	
  
      command = command + " /C ";
  }
hier fehlt mir zb noch linux, unix, os
Ideen?
Danke Caruso
 
Zuletzt bearbeitet:
Zurück