ifstream input("D:\\trans.txt");
ifstream input;
inout.open("D:\\trans.txt",ifstream::in);
wchar_t const name[] = L"D:\\trans.txt";
ifstream input(name);
上面的几种方法都试了,还在exe文件右键以管理员身份运行了,但还是打不开文件。
网上也没找到解决方法。请问要怎么办。谢谢。
PHPz2017-04-17 14:26:04
具體的錯誤是怎樣的哦?我自己寫了個,然後試了下,可以打開,你複製下試試。會不會是忘了從檔案讀入,還是用的cin唸哦?
#include <fstream>
#include <iostream>
#include <string>
using namespace std;
int main()
{
ifstream in("D:\zz.txt");
string res;
while (getline(in, res))
{
cout << res << endl;
}
return 0;
}
我們試試看下面的這個。 。 。 , 直接把字符讀到文件,,接著就打開,,看看能不能成功打開呢?我試了可以, 你試試行不。 。 。 。
#include <fstream>
#include <iostream>
#include <string>
using namespace std;
int main()
{
ofstream ou("D:\zz.txt");
string test("hello world");
ou << test << endl;
ifstream in("D:\zz.txt");
if (in.is_open())
{
cout << "opened!\n";
}
string res;
while (getline(in, res))
{
cout << res << endl;
}
return 0;
}