জাভাতে আপনি একটি ফাইলের বিষয়বস্তু বিভিন্ন উপায়ে পড়তে পারেন একটি উপায় হল java.util.Scanner ক্লাস ব্যবহার করে এটিকে একটি স্ট্রিংয়ে পড়া, তা করার জন্য,
-
স্ক্যানার ইনস্ট্যান্টিয়েট করুন ক্লাস, ফাইলের পাথ সহ, এটির কনস্ট্রাক্টরের প্যারামিটার হিসাবে।
-
একটি খালি স্ট্রিং বাফার তৈরি করুন৷
৷ -
স্ক্যানারের পরবর্তী লাইন থাকলে শর্ত সহ একটি while লুপ শুরু করুন। যেমন hasNextLine() সময়।
-
লুপের মধ্যে অ্যাপেন্ড() ব্যবহার করে স্ট্রিংবাফার অবজেক্টে ফাইলের প্রতিটি লাইন যুক্ত করুন পদ্ধতি।
-
toString() ব্যবহার করে বাফারের বিষয়বস্তুর বিষয়বস্তুকে স্ট্রিং-এ রূপান্তর করুন পদ্ধতি।
উদাহরণ
sample.txt নামের একটি ফাইল তৈরি করুন আপনার সিস্টেমের C ডিরেক্টরিতে, নিম্নলিখিত বিষয়বস্তু কপি করে পেস্ট করুন।
Tutorials Point is an E-learning company that set out on its journey to provide knowledge to that class of readers that responds better to online content. With Tutorials Point, you can learn at your own pace, in your own space. After a successful journey of providing the best learning content at tutorialspoint.com, we created our subscription based premium product called Tutorix to provide Simply Easy Learning in the best personalized way for K-12 students, and aspirants of competitive exams like IIT/JEE and NEET.
জাভা প্রোগ্রাম অনুসরণ করলে sample.txt ফাইলের বিষয়বস্তু পড়ে একটি স্ট্রিং এ এবং এটি মুদ্রণ করে৷
import java.io.File; import java.io.IOException; import java.util.Scanner; public class FileToString { public static void main(String[] args) throws IOException { Scanner sc = new Scanner(new File("E://test//sample.txt")); String input; StringBuffer sb = new StringBuffer(); while (sc.hasNextLine()) { input = sc.nextLine(); sb.append(" "+input); } System.out.println("Contents of the file are: "+sb.toString()); } }
আউটপুট
Contents of the file are: Tutorials Point is an E-learning company that set out on its journey to provide knowledge to that class of readers that responds better to online content. With Tutorials Point, you can learn at your own pace, in your own space. After a successful journey of providing the best learning content at tutorialspoint.com, we created our subscription based premium product called Tutorix to provide Simply Easy Learning in the best personalized way for K-12 students, and aspirants of competitive exams like IIT/JEE and NEET.