係統粉 > 電腦問答 > 其他問答

已解決C++讀取指定txt文件內容

提問者:旅行的小白豆子  |  瀏覽次  |  提問時間:2017-02-20  |  回答數量:6

C++讀取指定txt文件內容 老版能不能用c++寫一段讀取指定txt文件的代碼啊?.h和.cpp都要的。想做個參考,第一次編c++程序。

已有6條答案
搖

回答數:4  |  被采納數:1

坐等老大····
2017-02-20 15:02:38
讚 0
winston_1006

winston_1006

回答數:0  |  被采納數:115

http://apps.hi.baidu/share/detail/16191638
2017-02-20 15:32:52
讚 0
claiiy

claiiy

回答數:185  |  被采納數:54

謝老大···一會有問題在來,帖先不封··
2017-02-20 15:55:16
讚 18
lr5201314520

lr5201314520

回答數:199  |  被采納數:81

看了裏麵的代碼··裏麵的文件路徑是寫死的。我想傳進去一個路徑,或者路徑就寫死,我要在路徑後麵傳這個路徑下的文件名,應該怎麼拚接啊???
2017-02-20 22:45:40
讚 19
5真心愛你0

5真心愛你0

回答數:139  |  被采納數:111

//include head files
#include "stdafx.h"

//main method
int _tmain(int argc, _TCHAR* argv[])
{
string readFile();//declare the method
cout << "Welcome to use WordCountSys English words statistics system\n" << "Please enter your filePath" << endl;
readFile();
return 0;
}


//Read a specified file
string readFile()
{
char filePath[128]="E:\\WORK\\TRANING\\a.txt";
ifstream fin(filePath);
char s[128];
while (!(fin.eof()))
{
fin>>s;
cout<<s<<endl;
}
fin.close();
return "";
}

readFile()方法裏的filePath是寫死的不能改,我想給ifstream fin(filePath);傳一個參數讓路徑可以變應該怎麼改。。
2017-02-20 22:45:29
讚 13
7撿夢人7

7撿夢人7

回答數:164  |  被采納數:57

string readFile(char *pFilePath)
{
ifstream fin(pFilePath);
……
}
將路徑做為參數代入
2017-02-21 04:21:22
讚 16
相關問答
最新其他問答
解決方法