Ⅰ 在c/c++编程中,如何读取没有后缀名的文件进行操作
读取没有后缀名的文件和有后缀名的文件是一样,因为C++是根据文件名来操作的,是不管扩展名的,C++读取文件是简单的, 步骤如下:
第一步:打开文件
fstream file1( "temp" ,ios::out|ios::in); //temp 为你要读取的文件名
第二步:读取文件内容
fin.get(ch); //读文件中的一个字符到 ch ,ch的类型为char
第三步:使用你已经读取的内容,即第二步的 ch
cout << ch; //把 ch 的内容输出,当然你可以用ch做其他事
第四步:关闭文件
file1.close();
举例说明:
#include <iostream.h>
#include <fstream.h>
int main(int argc, char *argv[])
{
char ch;
fstream file1( "temp" ,ios::out|ios::in); //第一步:temp 为你要读写的文件名
file1.get(ch); //第二步:读文件中的一个字符到 ch
cout << ch; //第三步:
file1.close(); //第四步:文件不用了, 记得要关闭
return 0;
}
很简单吧,不过要注意,要包含头文件 #include <fstream.h>
顺便也讲一下写文件吧,步骤也差不多的
第一步:打开文件
fstream file2( "temp" ,ios::out|ios::in); //temp 为你要写的文件名
第二步:读取文件内容
cin >> ch; //输入一个字符到 ch ,当然假如ch有数值就不用输入了
第三步:使用你已经读取的内容,即第二步的 ch
file2.put( ch ); //把 ch 的内容写到文件
第四步:关闭文件
file2.close();
举例说明:
#include <iostream.h>
#include <fstream.h>
int main(int argc, char *argv[])
{
char ch;
fstream file2( "temp" ,ios::out|ios::in); //第一步:temp 为为你要写的文件名
cin >> ch; ///第二步:输入一个字符到 ch,
file2.put( ch ); //第三步:把 ch 的内容写到文件
file2.close(); //第四步:文件不用了, 记得要关闭
return 0;
}
Ⅱ C++中如何读取文件内容
两种读取方法,一种是按行读取,一种是按单词读取,具体如下:
1、按照行读取
string filename = "C:\Users\asusa\Desktop\蓝桥\rd.txt";
fstream fin;
fin.open(filename.c_str(), ios::in);
(此处空格一行)
vector<string> v;
string tmp;
(此处空格一行)
while (getline(fin, tmp))
{
v.push_back(tmp);
}
(此处空格一行)
for (auto x : v)
cout << x << endl;
2、按照单词读取
string filename = "C:\Users\asusa\Desktop\蓝桥\rd.txt";
fstream fin;
fin.open(filename.c_str(), ios::in);
(此处空格一行)
vector<string> v;
string tmp;
(此处空格一行)
while (fin >> tmp)
{
v.push_back(tmp);
}
(此处空格一行)
for (auto x : v)
cout << x << endl;
有读取就有写入,下面是写入的方法
//向文件写五次hello。
fstream out;
out.open("C:\Users\asusa\Desktop\蓝桥\wr.txt", ios::out);
(此处空格一行)
if (!out.is_open())
{
cout << "读取文件失败" << endl;
}
string s = "hello";
(此处空格一行)
for (int i = 0; i < 5; ++i)
{
out << s.c_str() << endl;
}
out.close();
Ⅲ c++ 如何用 ifstream 读取txt文件的全部内容,并存入变量中
//vs2008实测通过
#include<fstream>
#include<stdio.h>
usingnamespacestd;
voidmain()
{
ifstreaminfile;
infile.open("test.txt",ios::in);
charstr[1000];
while(!infile.eof())
{
infile>>str;
}
printf("%s ",str);//已保存在变量str中
infile.close();
}
Ⅳ C语言如何读取文本文件中的一行数据啊
用fstream(文件流),fstream
file
然后
file.getline(char*,int,char
a=‘\n’)第一个是一个存储字符串的指针,第二个专是要读取的最大长度,属第三个是行结束符,默认是回车,函数说明就是当读入的字符超过最大长度int或者遇到行结束符(‘\n’)时就停止,而且这个很好用的(对于读入和写入),你看看文档就会了,哈哈,给分啊。!!~~