এই নিবন্ধে, আমরা AM-PM ফরম্যাটে কীভাবে সময় বিন্যাস করতে হয় তা বুঝব। একটি ফর্ম্যাটিং স্ট্রিং বর্ণনা করে যে কীভাবে একটি তারিখ/সময়ের মান স্ট্রিং উপস্থাপনা (ফ্ল্যাট ফাইল, মানুষের পঠনযোগ্য আউটপুট ইত্যাদি) থেকে পড়া এবং লেখা উচিত।
নীচে একই -
এর একটি প্রদর্শন রয়েছে৷ধরুন আমাদের ইনপুট হল −
Current date: Thu Mar 17 16:04:31 IST 2022
কাঙ্খিত আউটপুট হবে −
The current Time in AM/PM format is : 04.04 pm
অ্যালগরিদম
Step 1 - START Step 2 - Declare a date object namely current_date that fetches the current date and time. Step 3 - Define the values. Step 4 - Declare an object ‘formatTime’ of class SimpleDateFormat. Step 5 - Use the function .format(current_date) to format the time to the specified format. Step 6 - Display the result Step 7 - Stop
উদাহরণ 1
এখানে, একটি প্রম্পটের উপর ভিত্তি করে ব্যবহারকারী দ্বারা ইনপুট প্রবেশ করানো হচ্ছে।
import java.util.Date; import java.text.SimpleDateFormat; public class Demo { public static void main(String[] args) { System.out.println("The required packages have been imported"); Date current_date = new Date(); System.out.println("The current date is: " + current_date); SimpleDateFormat formatTime = new SimpleDateFormat("hh.mm aa"); String result_time = formatTime.format(current_date); System.out.println("\nThe current Time in AM/PM format is : " + result_time); } }
আউটপুট
The required packages have been imported The current date is: Thu Mar 17 16:04:31 IST 2022 The current Time in AM/PM format is : 04.04 pm
উদাহরণ 2
এখানে, আমরা স্ট্যান্ডার্ড ডেভিয়েশন গণনা করার জন্য একটি ফাংশন সংজ্ঞায়িত করেছি।
import java.util.Date; import java.text.SimpleDateFormat; public class Demo { static void format_time(Date current_date){ SimpleDateFormat formatTime = new SimpleDateFormat("hh.mm aa"); String result_time = formatTime.format( current_date); System.out.println("\nThe current Time in AM/PM format is : " + result_time); } public static void main(String[] args) { System.out.println("The required packages have been imported"); Date current_date = new Date(); System.out.println("The current date is: " + current_date); format_time(current_date); } }
আউটপুট
The required packages have been imported The current date is: Thu Mar 17 16:04:31 IST 2022 The current Time in AM/PM format is : 04.04 pm