এই নিবন্ধে, আমরা কীভাবে অপারেটিং সিস্টেমের নাম এবং সংস্করণ নির্ধারণ করব তা বুঝব। এটি System.getProperty ফাংশন ব্যবহার করে সম্পন্ন করা হয়। জাভাতে getProperty(স্ট্রিং কী) পদ্ধতিটি তার আর্গুমেন্ট হিসাবে পাস করা নির্দিষ্ট কী দ্বারা চিহ্নিত সিস্টেম বৈশিষ্ট্য ফেরত দিতে ব্যবহৃত হয়। এটি java.lang. সিস্টেম ক্লাসের একটি পদ্ধতি।
নীচে একই -
এর একটি প্রদর্শন রয়েছে৷ইনপুট
ধরুন আমাদের ইনপুট হল −
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