一.c语言实现
常用函数介绍
C语言中文件读写操作主要通过stdio.h中的文件操作函数来实现。常用的文件操作函数有fopen、fclose、fread、fwrite、fseek、ftell等。
1.fopen函数:用于打开一个文件,并返回一个指向该文件的指针。函数原型如下:
FILE *fopen(const char *filename, const char *mode);
其中,filename为要打开的文件名,mode为打开文件的模式,常用的模式有:
- “r”:只读方式打开文件,文件必须存在。
- “w”:写入方式打开文件,如果文件存在则清空内容,如果文件不存在则创建新文件。
- “a”:追加方式打开文件,如果文件不存在则创建新文件。
- “rb”、“wb”、“ab”:以二进制方式打开文件,用于读写二进制文件。
FILE *fp;
fp = fopen("test.txt", "r");
if (fp == NULL) {printf("文件打开失败\n");
} else {printf("文件打开成功\n");
}
2.fclose函数:用于关闭一个文件。函数原型如下:其中,stream为文件指针
int fclose(FILE *stream);
3.fread函数:从文件中读取数据。函数原型如下:
size_t fread(void *ptr, size_t size, size_t count, FILE *stream);
其中,ptr为存放读取数据的缓冲区指针,size为每个数据项的大小,count为要读取的数据项个数,stream为文件指针。函数返回实际读取的数据项个数。
int num[5];
fread(num, sizeof(int), 5, fp);
4.fwrite函数:向文件中写入数据。函数原型如下:
size_t fwrite(const void *ptr, size_t size, size_t count, FILE *stream);
其中,ptr为要写入的数据的指针,size为每个数据项的大小,count为要写入的数据项个数,stream为文件指针。函数返回实际写入的数据项个数。
int num[5] = {1, 2, 3, 4, 5};
fwrite(num, sizeof(int), 5, fp);
5.seek函数:移动文件指针的位置。函数原型如下:
int fseek(FILE *stream, long offset, int origin);
其中,stream为文件指针,offset为偏移量,origin为起始位置。常用的起始位置有:
- SEEK_SET:从文件开头开始偏移。
- SEEK_CUR:从当前位置开始偏移。
- SEEK_END:从文件末尾开始偏移。
fseek(fp, 2*sizeof(int), SEEK_SET);
6.ftell函数:获取文件指针的当前位置。函数原型如下:
long ftell(FILE *stream);
其中,stream为文件指针。函数返回当前位置相对于文件开头的偏移量。
long pos = ftell(fp);
完整代码如下:
#include <stdio.h>int main() {FILE *fp;char buffer[100];// 打开文件进行写操作fp = fopen("example.txt", "w");if (fp == NULL) {printf("Error opening file");return -1;}// 写入内容到文件中fprintf(fp, "This is an example program for file writing in C");// 关闭文件fclose(fp);// 打开文件进行读操作fp = fopen("example.txt", "r");if (fp == NULL) {printf("Error opening file");return -1;}// 从文件中读取内容并打印到控制台fgets(buffer, 100, fp);printf("File content: %s", buffer);// 关闭文件fclose(fp);return 0;
}
连续读取文件
#include <stdio.h>int main() {FILE *file;char buffer[100];file = fopen("example.txt", "r"); // 打开文件,以只读方式if (file == NULL) {printf("无法打开文件\n");return 1;}while (fgets(buffer, sizeof(buffer), file) != NULL) { // 逐行读取文件内容printf("%s", buffer); // 输出读取到的内容}fclose(file); // 关闭文件return 0;
}
二.c++实现
常用函数介绍
在C++中,可以使用文件流类(fstream)来实现文件的读写操作。fstream类继承自iostream类,提供了读写文件的功能。具体的实现步骤如下:
1.包含头文件
#include <fstream>
2.创建文件流对象
std::fstream file;
3.打开文件
file.open("filename", std::ios::mode);
这里的"filename"是文件名,可以是相对或绝对路径。std::ios::mode是打开文件的模式,常用的模式有:
- std::ios::in:以只读方式打开文件。
- std::ios::out:以只写方式打开文件,如果文件不存在则创建文件,如果文件存在则清空文件内容。
- std::ios::app:以只写方式打开文件,如果文件不存在则创建文件,如果文件存在则在文件末尾追加内容。
- std::ios::binary:以二进制方式打开文件,适用于非文本文件。
- 可以组合使用多个模式,例如 std::ios::in | std::ios::out 表示以读写方式打开文件。
4.检查文件是否成功打开
if (file.is_open()) {// 文件成功打开,可以进行读写操作
} else {// 文件打开失败
}
5.文件的读操作
std::string line;
while (std::getline(file, line)) {// 逐行读取文件内容并进行处理
}
这里使用std::getline函数逐行读取文件内容,每次读取一行存储到line变量中。
6.文件的写操作
file << "content";
示例代码如下:
#include <iostream>
#include <fstream>int main() {std::fstream inputFile;std::fstream outputFile;std::string line;// 打开输入文件inputFile.open("input.txt", std::ios::in);if (!inputFile.is_open()) {std::cout << "Failed to open input file." << std::endl;return 1;}// 打开输出文件outputFile.open("output.txt", std::ios::out);if (!outputFile.is_open()) {std::cout << "Failed to open output file." << std::endl;return 1;}// 逐行读取输入文件内容并写入输出文件while (std::getline(inputFile, line)) {outputFile << line << std::endl;}// 关闭文件inputFile.close();outputFile.close();return 0;
}