osSelect.java 359 B

12345678910111213141516
  1. package com.ruoyi.Common;
  2. /**
  3. * @author jiangxin
  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. }