fortunetoday 2021-09-19 18:31 采纳率: 100%
浏览 441
已结题

求看一下啊c++ ifstream读取文件为何失败

#include<iostream>
#include<fstream>
using namespace std;
int main()
{
    char ch1;
    ofstream outFile("d:\\vs c++ document\\first-35\\file1.txt",ios::out);
    if(!outFile)
    {cout<<"文件打开错误!";return 0;}
    outFile<<"I am a file.Please read me.";
    cout<<"文件内容I am file.Please read me."<<endl;
    outFile.close();
    ifstream inFile("d:\\vs c++ doucument\\first-35\\file1.txt",ios::in);
    if(!inFile)
    {cout<<"文件打开错误!";goto Exit;}
    streampos pos=inFile.tellg();
    cout<<"当前文件指针位置:"<<pos;
    inFile.get(ch1);  cout<<",字符"<<ch1<<endl;
    pos=inFile.tellg();
    cout<<"读取一个字符后文件指针位置:"<<pos<<endl;
    inFile.seekg(5,ios::beg);
    pos=inFile.tellg();
    cout<<"后移5个字符后文件指针位置:"<<pos;
    inFile.get(ch1);  cout<<",字符"<<ch1<<endl;
    pos=inFile.tellg();
    cout<<"读取一个字符后文件指针位置:"<<endl;
    pos=pos+(streampos)19;
    inFile.seekg(pos);
    cout<<"后移19个字符后文件指针位置:"<<pos;
    inFile.get(ch1);cout<<",字符"<<ch1;
    inFile.get(ch1);cout<<ch1<<endl;
    inFile.close();
    
Exit:
    return 0;
}


程序在ifstream那里读取文件失败。

  • 写回答

1条回答 默认 最新

  • 快乐鹦鹉 2021-09-19 18:45
    关注

    "d;\vs c++ d

    d后面应该是冒号,你写成分号了

    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论

报告相同问题?

问题事件

  • 系统已结题 9月27日
  • 已采纳回答 9月19日
  • 修改了问题 9月19日
  • 创建了问题 9月19日

悬赏问题

  • ¥15 WPF动态创建页面内容
  • ¥15 如何对TBSS的结果进行统计学的分析已完成置换检验,如何在最终的TBSS输出结果提取除具体值及如何做进一步相关性分析
  • ¥15 SQL数据库操作问题
  • ¥100 关于lm339比较电路出现的问题
  • ¥15 Matlab安装yalmip和cplex功能安装失败
  • ¥15 加装宝马安卓中控改变开机画面
  • ¥15 STK安装问题问问大家,这种情况应该怎么办
  • ¥15 关于罗技鼠标宏lua文件的问题
  • ¥15 halcon ocr mlp 识别问题
  • ¥15 已知曲线满足正余弦函数,根据其峰值,还原出整条曲线