fabiojose
11/26/2014 - 6:06 PM

Java.System.Info.OS

Java.System.Info.OS

public class OSInfo {

  public static String getInfo(){
    return System.getProperty("os.name") + " " + System.getProperty("os.arch");
  }
  
}