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.
|
- package com.common;
-
- /**
- * @author
- * @create 2022-01-19-16:40
- */
- public class osSelect {
-
- public static boolean isLinux() {
- return System.getProperty("os.name").toLowerCase().contains("linux");
- }
-
- public static boolean isWindows() {
- return System.getProperty("os.name").toLowerCase().contains("windows");
- }
- }
|