c++读文件-对try-throw-catch的应用

Posted 后营马族子弟

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了c++读文件-对try-throw-catch的应用相关的知识,希望对你有一定的参考价值。

 1 #include<iostream>
 2 #include<fstream>
 3 #include<stdlib.h>
 4 #include<stdio.h>
 5 using namespace std;
 6 int main(int argc, char** argv)
 7 {
 8     ifstream file(argv[1]);    
 9     char line[100] = {0};
10 
11     try
12     {
13         if (file.fail())   //如果提供一个不存在的路径就会出错
14             throw argv[1];
15     }
16     catch (char* s)
17     {
18         cout<<"open file:["<<argv[1]<<"] failed"<<endl;
19         exit(1);
20     }
21 
22     while (!file.eof())
23     {
24         file.getline(line, sizeof(line)/sizeof(char)); //读取文件每一行,直到文件结束
25         cout<<line<<endl;
26     }
27 
28     file.close();  //切记关闭文件啊.
29 
30     return 0;
31 }

 

以上是关于c++读文件-对try-throw-catch的应用的主要内容,如果未能解决你的问题,请参考以下文章

C++文件操作fstream

C++中对文件的操作

C++文件读写详解(ofstream,ifstream,fstream)

c++ 文件操作

C++:文件操作 | 读写文本文件

C++中怎样进行二进制文件的读写?