赞
踩
- QFile file("flash_data.bin"); //定义一个文件
- file.open(QIODevice::WriteOnly); //打开文件
- QDataStream ds(&file); //定义一个数据流
- for (int idx = 0; idx < 8192; ++i){
- ds << (uint8_t)data[i]; //把数组中的数据写到数据流,即写入文件中
- }
- file.close();
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。