Dados do SO

class Sistema {

 

  public static void main(String args[]) {

      System.out.println(System.getProperty("os.name") + " " +

                         System.getProperty("sun.os.patch.level") + "versao " +

                         System.getProperty("os.version") + "\nFile separator: " +

                         System.getProperty("file.separator"));

 

  }