码迷,mamicode.com
首页 > 其他好文 > 详细

qt 文本流&数据流

时间:2021-05-24 16:16:10      阅读:0      评论:0      收藏:0      [点我收藏+]

标签:tun   while   line   pre   unicode   auto   deb   readonly   pen   

        // 文本流
        QFile file("aaa.txt");
        file.open(QFileDevice::WriteOnly);
        QTextStream stream(&file);
        stream<<QString("hell oworld")<<123456;
        file.close();
        // 读取文本流
        file.open(QIODevice::ReadOnly|QIODevice::Text);
        stream.setAutoDetectUnicode(true);
        while(!stream.atEnd()){
            QString str = stream.readLine();
            qDebug()<<str;
        }
       // 数据流
          QFile file("bbb.txt");
          file.open(QIODevice::WriteOnly);
          QDataStream astrem(&file);
          astrem<<QString("hello world")<<123456;
          file.close();

          file.open(QIODevice::ReadOnly);
          QString str;
          int num;
          astrem>>str>>num;

          qDebug()<<str<<num;
          file.close();

qt 文本流&数据流

标签:tun   while   line   pre   unicode   auto   deb   readonly   pen   

原文地址:https://www.cnblogs.com/lodger47/p/14784705.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!