C ++ reads and writes text files

Source: Internet
Author: User

Source: http://www.cnitblog.com/wufajiaru/archive/2013/01/05/56390.html

Ofstream is from memory to hard disk, ifstream is from hard disk to memory, in fact, the so-called stream buffer is the memory space;

In C ++, there is a stream class. All I/O is based on this "stream" class, including the file I/O we want to know, stream has two important operators:

1. Plug-in (<)
Output data to the stream. For example, the system has a default standard output stream (cout), which generally refers to the display, so cout <"Write stdout" <'\ n '; output the string "Write stdout" and line feed character ('\ n') to the standard output stream.

2. Analyze (>)
Input data from the stream. For example, the system has a default standard input stream (CIN), which generally refers to the keyboard. Therefore, CIN> X; read data of a specified type (that is, the type of variable X) from the standard input stream.

In C ++, operations on files are implemented through the fstream (file stream) subclass of stream. Therefore, to operate files in this way, you must add the header file fstream. h. The following describes how to operate such files.

1. Open a file
In the fstream class, a member function open () is used to open a file. Its prototype is:

Void open (const char * filename, int mode, int access );

Parameters:

Filename: name of the file to be opened
Mode: how to open the file
Access: Open File Attributes
The file opening method is defined in class IOs (which is the base class of all stream I/O classes). The common values are as follows:

IOS: APP: open a file in append Mode
IOS: ate: After the file is opened, it is located at the end of the file. IOS: app contains this attribute.
IOS: Binary: open a file in binary mode. The default mode is text. For the differences between the two methods, see the previous article.
IOS: In: open the file as input (input file data to memory)
IOS: Out: The file is opened as an output (memory data is output to the file)
IOS: nocreate: The file is not created, so opening fails if the file does not exist.
IOS: noreplace: Does not overwrite the file. Therefore, if the file fails to be opened
IOS: trunc: if the file exists, set the file length to 0.
You can use "or" to connect the preceding attributes, for example, IOS: Out | IOs: binary.

The attribute value for opening a file is:

0: normal file, open access
1: Read-Only files
2: Implicit File
4: system files
You can use "or" or "+" to connect the above attributes. For example, 3 or 1 | 2 means opening the file with read-only and implicit attributes.

For example, open the file c: \ config. sys in binary input mode.
Fstream file1;
File1.open ("C: \ config. sys", IOS: Binary | IOs: In, 0 );

If the OPEN function only has one parameter for the file name, it is opened by reading/writing a common file, that is:
File1.open ("C: \ config. sys "); <=> file1.open (" C: \ config. sys ", IOS: In | IOs: Out, 0 );

In addition, fstream has the same constructor as open (). For the above example, you can open the file at the time of definition:
Fstream file1 ("C: \ config. sys ");

In particular, fstream has two sub-classes: ifstream (input file stream) and ofstream (outpu file stream). ifstream opens the file as input by default, ofstream opens the file in output mode by default.
Ifstream file2 ("C: \ PDOS. Def"); // open the file as input
Ofstream file3 ("C: \ x.123"); // open the file in output mode

Therefore, in actual applications, select different classes as needed: If you want to open them as input, use ifstream to define them; if you want to open them as output, define it with ofstream. If you want to open it in input/output mode, define it with fstream.

Ii. Close files
You must close the opened file after it is used. fstream provides the member function close () to complete this operation, for example, file1.close (); to close the file connected to file1.

3. Read and Write files
Reading and writing a file can be divided into reading a text file and a binary file. reading a text file is relatively simple, and it can be done with an insertor or an analyzer. Binary reading is more complex, the two methods are described in detail below.

1. Read and Write text files
The reading and writing of text files is very simple: Use the plug-in (<) to output data to the file; Use the extract (>) to input data from the file. Suppose file1 is opened as input, and file2 is opened as output. Example:

File2 <"I Love You"; // write the string "I love you" to the file"
Int I;
File1> I; // enter an integer from the file.

This method also provides a simple formatting capability, such as specifying the output as hexadecimal. The specific formats include:

Operator Input/Output
Format dec as a decimal Value Data Input and Output
Endl outputs a line break and refresh the output.
Ends outputs an empty character output
Hex format to hexadecimal value data input and output
Oct format to octal numeric data input and output
Setpxecision (int p) is used to set the number of precise digits of a floating point.

For example, to output 123 as a hexadecimal value: file1

2. Binary file read/write
① Put ()
The put () function writes a character to the stream. Its prototype is ofstream & put (char ch), which is also relatively simple to use, such as file1.put ('C '); it is to write a character 'C' to the stream '.

② Get ()
The get () function is flexible and has three common overload methods:

One is the form corresponding to put (): ifstream & get (char & Ch); the function is to read a character from the stream and save the result in the reference ch, if it is at the end of the file, null characters are returned. For example, file2.get (x); indicates reading a character from the file and saving the read character in X.

The prototype of another form of overload is: int get (); this form returns a character from the stream. If it reaches the end of the file, it returns EOF, for example, x = file2.get (); the function is the same as that of the previous example.

Another form of prototype is: ifstream & get (char * Buf, int num, char delim = '\ n'); this form reads characters into the array pointed by the Buf, the default linefeed '\ n' is used if the num character is read or the character specified by delim is encountered '. For example:

File2.get (str1, 127, 'A'); // read the character from the file to str1. It is terminated when 'A' or 127 characters are read.

③ Read/write data blocks
To read and write binary data blocks, use the member functions read () and write (). Their prototype is as follows:

Read (unsigned char * Buf, int num );
Write (const unsigned char * Buf, int num );

Read () reads num characters from the file to the cache pointed to by the Buf. If the number of num characters has not been read at the end of the file, you can use the member function int gcount (); and write () writes num characters from the cache directed to the Buf to the file. It is worth noting that the cache type is unsigned char *, sometimes type conversion is required.

Example:

Unsigned char str1 [] = "I Love You ";
Int N [5];
Ifstream in ("XXX. XXX ");
Ofstream out ("yyy. yyy ");
Out. Write (str1, strlen (str1); // write all str1 strings to yyy. yyy.
In. Read (unsigned char *) n, sizeof (n); // read the specified integer from XXX. XXX. Pay attention to type conversion.
In. Close (); Out. Close ();

Iv. EOF Detection
The member function EOF () is used to check whether it has reached the end of the file. If it has reached the end of the file, a non-0 value is returned; otherwise, 0 is returned. The prototype is int EOF ();

For example, if (in. EOF () showmessage ("has reached the end of the file! ");

V. File locating
Unlike C's file operations, the C ++ I/O system manages two pointers associated with a file. One is the read pointer, which indicates the position of the input operation in the file; the other is the write pointer, which is the position of the next write operation. The corresponding pointer automatically changes each time the input or output is executed. Therefore, file location in C ++ is divided into read location and write location. The corresponding member functions are seekg () and seekp (). Seekg () is used to set the read position, and seekp is used to set the write position. Their most common forms are as follows:

Istream & seekg (streamoff offset, seek_dir origin );
Ostream & seekp (streamoff offset, seek_dir origin );

Streamoff is defined in iostream. H, and defines the maximum value that can be obtained by Offset offset. seek_dir indicates the reference position for moving and is an enumeration with the following values:

IOS: Beg: Start of the file
IOS: cur: current file location
IOS: end: End of the file

These two functions are generally used in binary files, because text files may be different from the expected values due to the system's interpretation of characters. Example:

File1.seekg (1234, IOS: cur); // move the read pointer of the file from the current position to the back of the 1234 bytes
File2.seekp (1234, IOS: Beg); // transfers the write pointer of the object from the beginning to the back of the object by 1234 bytes.

 

Study Notes of iostream library in C ++ standard library (2) Use of fstream library and ofstream class

The iostream library not only supports input and output from terminal devices, but also file input and output. File-related input and output class declarations are included in the fstream header file. There are three classes responsible for file input and output.

1) ifstream class: Derived from istream class.
2) ofstream class: Derived from ostream class.
3) fstream class: Derived from iostream class.

Because the input and output of files are different from the input and output of the keyboard and mouse, generally there is only one keyboard device on the PC. Therefore, the iostream library declares an istream object cin, this object is responsible for retrieving data from the keyboard, and many file devices are used in the system, therefore, the iostream library cannot create an ifstream object for each file on the machine and an ofstream object for Data Writing, therefore, when reading or writing data to a file, you must create an ifstream or ostream object.

The default constructor of the ofstream class is as follows:

Ofstream: ofstream (const char * filename, int mode = IOs: Out, int openport = filebuf: openport );

Filename is the name of the file to be opened,
Mode is enabled,
Openport is the attribute of opening a file.

The mode can be set as follows:
IOS: The app is opened in append mode.
IOS: ate file is opened and located at the end of the file
IOS: Binary open a file in binary format. It is opened in text format by default.
IOS: In file opened in read (input) Mode
IOS: Out file opened in write (output) Mode
IOS: trunc clear the file if the file exists.
The preceding attributes are connected by "|" (by bit or.

The openprot attributes are as follows:
0 common files
1 read-only file
2. Implicit File
4. system files
The preceding attributes can be organized by adding or by bit. For example, 1 | 2 and 3 indicate both read-only and implicit files.

In Windows, do not use the third parameter. If the third parameter is added, the third parameter is the file sharing mode, that is, when the file is opened, whether other processes can read and write the file.
The sharing mode parameter can be the following values:
0x10 // _ sh_denyrw denies read and write access to the file

0x20 // _ sh_denywr denies write access to the file
0x30 // _ sh_denyrd denies read access to the file.
0x40 // _ sh_denyno permits read and write access
The error "invalid sharing flag" is reported for other values.

Ofstream hfile ("C: \ 1.txt", IOS: Out, _ sh_denyrw); // _ sh_denyrw is deny read and write

If (! Hfile) // if the file cocould open, hfile is a handle, else is zero
{
Cout <"Write fail! "<Endl;
Cout <"access is denies, maybe the file is readonlys, or use deny read opened of other process." <Endl;
}
Else
{
Hfile <"by coderlee writes ";
Cout <"Write success! "<Endl;
}
Hfile. Close (); // opened file need close.

The above is the example code for writing the file. First open the file and then judge whether it is 0. If it is 0, the system prompts write fail. Otherwise, the system prompts write success.

 

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.