You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

17 lines
344 B

  1. package com.common;
  2. /**
  3. * @author
  4. * @create 2022-01-19-16:40
  5. */
  6. public class osSelect {
  7. public static boolean isLinux() {
  8. return System.getProperty("os.name").toLowerCase().contains("linux");
  9. }
  10. public static boolean isWindows() {
  11. return System.getProperty("os.name").toLowerCase().contains("windows");
  12. }
  13. }