Computer >> 컴퓨터 >  >> 프로그램 작성 >> Java

운영 체제의 이름과 버전을 확인하는 Java 프로그램

<시간/>

이 기사에서는 운영 체제의 이름과 버전을 결정하는 방법을 이해할 것입니다. 이것은 System.getProperty 함수를 사용하여 수행됩니다. Java의 getProperty(String key) 메소드는 인수로 전달된 지정된 키가 나타내는 시스템 속성을 반환하는 데 사용됩니다. java.lang.System 클래스의 메소드입니다.

아래는 동일한 데모입니다 -

입력

입력이 -

라고 가정합니다.
Run the program

출력

원하는 출력은 -

The operating system being used in the system is : Mac OS X

알고리즘

Step 1 – START
Step 2 – Declare a string namely my_os
Step 3 – Call the function System.getProperty to fetch the details of operating system and
store it in a string
Step 4 – Display the result
Step 5 – STOP

예시 1

public class OperatingSystem {
   public static void main(String[] args) {
      String my_os = System.getProperty("os.name");
      System.out.println("The operating system being used in the system is : " +my_os);
   }
}

출력

The operating system being used in the system is : Linux

예시 2

public class OperatingSystem {
   public static void main(String[] args) {
      String my_os = System.getProperty("os.name");
      System.out.println("The operating system being used in the system is : " +my_os);
   }
}

출력

The operating system being used in the system is : Linux