科技行者

行者学院 转型私董会 科技行者专题报道 网红大战科技行者

知识库

知识库 安全导航

至顶网软件频道应用软件读取文件信息,并输出到屏幕上

读取文件信息,并输出到屏幕上

  • 扫一扫
    分享文章到微信

  • 扫一扫
    关注官方公众号
    至顶头条

读取文件信息,并输出到屏幕上

来源:周立峰的博客【原创】 2009年12月14日

关键字: java

  • 评论
  • 分享微博
  • 分享邮件
读取文件信息,并输出到屏幕上
代码如下:
#include <fstream>
#include <iostream>
using namespace std;
int main ()
{
   char data[80];
   ofstream outfile;
   outfile.open("file.dat");
   cout << "Writing to the file" << endl;
   cout << "Enter your name: ";
   cin.getline(data, 80);
   outfile << data << endl;
   cout << "Enter your id: ";
   cin >> data;
   cin.ignore();
   outfile << data << endl;
   outfile.close();
   ifstream infile;
   cout << "Reading from the file" << endl;
   infile.open("file.dat");
   infile >> data;
   cout << data << endl;
   infile >> data;
   cout << data << endl;
   infile.close();
   return 0;
}

    • 评论
    • 分享微博
    • 分享邮件
    邮件订阅

    如果您非常迫切的想了解IT领域最新产品与技术信息,那么订阅至顶网技术邮件将是您的最佳途径之一。

    重磅专题
    往期文章
    最新文章