Qt5 檔案讀寫

2021-06-28 05:28:39 字數 567 閱讀 4538

讀寫檔案涉及到的幾個類:和 

讀檔案函式

void

readfile(

const

qstring &filename)  

//qtextstream提供一種讀寫文字文件邊界的介面

qtextstream outtext(&my_file);  //將qtextstream與特定檔案關聯

qdebug() << outtext.readall();  //讀出qtextstream物件中所有內容

my_file.close(); //關閉檔案

}  寫檔案函式

void

writefile(

const

qstring &filename)  

qtextstream in(&my_file);  

in<<"hello world!"

; //向qtextstream中寫入內容

my_file.flush();    //重新整理檔案,將buffer中所有資料寫入檔案,此語句不可少。

my_file.close();  

}  

Qt5檔案及磁碟處理

qt提供了qfile類用於進行檔案操作。qfile類提供了讀寫檔案的介面,可以讀寫文字檔案 二進位制檔案和qt的資源檔案。include include include intmain int argc,char ar return a.exec a if data.open qfile write...

HDF5檔案讀寫

做實驗需要跑資料,caffe庫要求資料格式為hdf5.hdf5資料的import與export可以通過matlab簡單完成。hdfview可以簡單檢視hdf5資料。1.h5disp命令可以檢視hdf5資料格式 h5disp test.h5 hdf5 test.h5 group dataset dat...

HDF5檔案讀寫

做實驗需要跑資料,caffe庫要求資料格式為hdf5.hdf5資料的import與export可以通過matlab簡單完成。hdfview可以簡單檢視hdf5資料。1.h5disp命令可以檢視hdf5資料格式 1 h5disp test.h5 2hdf5 test.h5 3 group 4 data...