25'ten fazla konu seçemezsiniz
Konular bir harf veya rakamla başlamalı, kısa çizgiler ('-') içerebilir ve en fazla 35 karakter uzunluğunda olabilir.
|
- 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");
- }
- }
|