Presentation is loading. Please wait.

Presentation is loading. Please wait.

Ms N Nashandi Dr SH Nggada 2016/01/03Ms N Nashandi and Dr SH Nggada1 Week 6 -File input and output in C++

Similar presentations


Presentation on theme: "Ms N Nashandi Dr SH Nggada 2016/01/03Ms N Nashandi and Dr SH Nggada1 Week 6 -File input and output in C++"— Presentation transcript:

1 Ms N Nashandi Dr SH Nggada 2016/01/03Ms N Nashandi and Dr SH Nggada1 Week 6 -File input and output in C++

2 Outline This week we will be covering: Introduction to data file handling in C++ Classes for file stream operation Opening a file Closing File ERROR HANDLING FUNCTION File pointers and their manipulation 2016/01/03Ms N Nashandi and Dr SH Nggada2

3 Introduction to data file handling in C++ File -The information / data stored under a specific name on a storage device, is called a file. Stream- refers to a sequence of bytes. Text file - is a file that stores information in ASCII characters. In text files, each line of text is terminated with a special character known as EOL (End of Line) character or delimiter character. When this EOL character is read or written, certain internal translations take place. Binary file -is a file that contains information in the same format as it is held in memory. In binary files, no delimiters are used for a line and no translations occur here. 2016/01/03Ms N Nashandi and Dr SH Nggada3

4 Classes for file stream operation ofstream: Stream class to write on files ifstream: Stream class to read from files fstream: Stream class to both read and write from/to files. NB: To perform file processing in C++, header files and must be included in your C++ source file. 2016/01/03Ms N Nashandi and Dr SH Nggada4

5 Opening a file in C++ To open a file one could either use a constructor or an open function. OPENING FILE USING CONSTRUCTOR ofstream outFile("sample.txt"); //output only ifstream inFile(“sample.txt”); //input only 2016/01/03Ms N Nashandi and Dr SH Nggada5

6 Opening a file using open() function open() function is a member of fstream, ifstream, and ofstream objects. standard syntax for open() function: Stream-object.open(“filename”, mode); The first argument specifies the name and location of the file to be opened and the second argument of the open() member function defines the mode in which the file should be opened. 2016/01/03Ms N Nashandi and Dr SH Nggada6

7 Examples using open() function o ofstream outFile; outFile.open("sample.txt"); o ifstream inFile; inFile.open("sample.txt"); 2016/01/03Ms N Nashandi and Dr SH Nggada7

8 File could be open in different modes specified by open() function File mode parameterMeaning ios::appAppend to end of file ios::ate go to end of file on opening ios::binaryfile open in binary mode ios::inopen file for reading only ios::outopen file for writing only ios::nocreate open fails if the file does not exist ios::noreplace open fails if the file already exist ios::trunc delete the contents of the file if it exist 2016/01/03Ms N Nashandi and Dr SH Nggada8 All these flags can be combined using the bitwise operator OR (|). For example, if we want to open the file example.bin in binary mode to add data we could do it by the following call to member function open(): fstream file; file.open("example.bin", ios::out | ios::app | ios::binary);

9 Closing file When a C++ program terminates it automatically closes flushes all the streams, release all the allocated memory and close all the opened files. It is a good practice that a programmer should close all the opened files before program termination. void close() - standard syntax function, which is a member of fstream, ifstream, and ofstream objects. E:g  outFile.close();  inFile.close(); 2016/01/03Ms N Nashandi and Dr SH Nggada9

10 Input and Output Operation: put() and get() function put() -writes a single character to the associated stream. get() - reads a single character form the associated stream. Examples: file.get(ch); file.put(ch); 2016/01/03Ms N Nashandi and Dr SH Nggada10

11 Write() and Read() Function write() and read() functions write and read blocks of binary data. example: file.read((char *)&obj, sizeof(obj)); file.write((char *)&obj, sizeof(obj)); 2016/01/03Ms N Nashandi and Dr SH Nggada11

12 ERROR HANDLING FUNCTION FUNCTIONRETURN VALUE AND MEANING eof() returns true (non zero) if end of file is encountered while reading; otherwise return false(zero) fail() return true when an input or output operation has failed bad() returns true if an invalid operation is attempted or any unrecoverable error has occurred. good()returns true if no error has occurred. 2016/01/03Ms N Nashandi and Dr SH Nggada12

13 File Pointers And Their Manipulation All i/o streams objects have, at least, one internal stream pointer: ifstream, like istream, has a pointer known as the get pointer that points to the element to be read in the next input operation. ofstream, like ostream, has a pointer known as the put pointer that points to the location where the next element has to be written. fstream, inherits both, the get and the put pointers 2016/01/03Ms N Nashandi and Dr SH Nggada13

14 File Pointers(Cont.) These internal stream pointers that point to the reading or writing locations within a stream can be manipulated using the following member functions: 2016/01/03Ms N Nashandi and Dr SH Nggada14 seekg() moves get pointer(input) to a specified location seekp() moves put pointer (output) to a specified location tellg() gives the current position of the get pointer tellp() gives the current position of the put pointer

15 Home Work Write a C++ program to count the total occurrence of words ”he” in a text file ”story.txt”(ignore the case of the words) 2016/01/03Ms N Nashandi and Dr SH Nggada15

16 END OF THE LECTURE THANK YOU!! 2016/01/03Ms N Nashandi and Dr SH Nggada16


Download ppt "Ms N Nashandi Dr SH Nggada 2016/01/03Ms N Nashandi and Dr SH Nggada1 Week 6 -File input and output in C++"

Similar presentations


Ads by Google