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.

17 satır
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. }