Computer >> कंप्यूटर >  >> प्रोग्रामिंग >> C++

C++ का उपयोग करके टेक्स्ट फ़ाइल से डेटा पढ़ें

टेक्स्ट फ़ाइल से डेटा पढ़ने के लिए यह एक C++ प्रोग्राम है।

इनपुट

tpoint.txt is having initial content as
“Tutorials point.”

आउटपुट

Tutorials point.

एल्गोरिदम

Begin
   Create an object newfile against the class fstream.
   Call open() method to open a file “tpoint.txt” to perform write operation using object newfile.
   If file is open then
      Input a string “Tutorials point" in the tpoint.txt file.
      Close the file object newfile using close() method.
   Call open() method to open a file “tpoint.txt” to perform read operation using object newfile.
   If file is open then
      Declare a string “tp”.
      Read all data of file object newfile using getline() method and put it into the string tp.
      Print the data of string tp.
   Close the file object newfile using close() method.
End.

उदाहरण

#include <iostream>
#include <fstream>
#include <string>
using namespace std;
int main(){
   fstream newfile;
   newfile.open("tpoint.txt",ios::out);  // open a file to perform write operation using file object
   if(newfile.is_open())     //checking whether the file is open
   {
      newfile<<"Tutorials point \n"; //inserting text
      newfile.close(); //close the file object
   }
   newfile.open("tpoint.txt",ios::in); //open a file to perform read operation using file object
   if (newfile.is_open()){   //checking whether the file is open
      string tp;
      while(getline(newfile, tp)){  //read data from file object and put it into string.
         cout << tp << "\n";   //print the data of the string
      }
      newfile.close();   //close the file object.
   }
}

आउटपुट

Tutorials point

  1. जावा में गुण फ़ाइल से डेटा कैसे पढ़ा जाए?

    गुण हैशटेबल वर्ग का एक उपवर्ग है और यह गुणों के निरंतर सेट का प्रतिनिधित्व करता है। गुण स्ट्रीम में सहेजा जा सकता है या स्ट्रीम से लोड किया जा सकता है। गुण सूची में प्रत्येक कुंजी और उसके संगत मान एक स्ट्रिंग है। गुण फ़ाइल का उपयोग जावा में कॉन्फ़िगरेशन को बाहरी बनाने और कुंजी-मूल्य जोड़े को संग

  1. Matplotlib का उपयोग करके .txt फ़ाइल से डेटा प्लॉट करें

    Matplotlib का उपयोग करके .txt फ़ाइल से डेटा प्लॉट करने के लिए, हम निम्नलिखित कदम उठा सकते हैं - आकृति का आकार सेट करें और सबप्लॉट के बीच और आसपास पैडिंग समायोजित करें। bar_names और bar_heights के लिए खाली सूचियां प्रारंभ करें। पठन r मोड में एक नमूना .txt फ़ाइल खोलें और बार के नाम और ऊंचाई सूची में

  1. टेक्स्ट फ़ाइल से एक्सेल में डेटा कैसे आयात करें (3 तरीके)

    कभी-कभी, हमारे पास टेक्स्ट फ़ाइल में हमारा वांछित डेटा हो सकता है। और हमें उस डेटा को Excel . में आयात करने की आवश्यकता है विभिन्न कार्यों को करने के लिए कार्यपुस्तिका। इस लेख में, हम आपको डेटा आयात करने . के सरल लेकिन प्रभावी तरीके दिखाएंगे एक टेक्स्ट फ़ाइल . से एक्सेल . में । उदाहरण के लिए,