程序師世界是廣大編程愛好者互助、分享、學習的平台,程序師世界有你更精彩!
首頁
編程語言
C語言|JAVA編程
Python編程
網頁編程
ASP編程|PHP編程
JSP編程
數據庫知識
MYSQL數據庫|SqlServer數據庫
Oracle數據庫|DB2數據庫
 程式師世界 >> 編程語言 >> C語言 >> C++ >> 關於C++ >> C++ 讀寫文件安全又簡潔的簡單實例

C++ 讀寫文件安全又簡潔的簡單實例

編輯:關於C++

C++ 讀寫文件安全又簡潔的簡單實例。本站提示廣大學習愛好者:(C++ 讀寫文件安全又簡潔的簡單實例)文章只能為提供參考,不一定能成為您想要的結果。以下是C++ 讀寫文件安全又簡潔的簡單實例正文


C++ 讀寫文件安全又簡潔的簡單實例

投稿:lqh

這篇文章主要介紹了C++ 讀寫文件安全又簡潔的簡單實例的相關資料,需要的朋友可以參考下

C++ 讀寫文件安全又簡潔的簡單實例

實例代碼:

#include <string> 
#include <iostream> 
#include <fstream> 
 
using namespace std; 
 
int get_file_content(string sFileName, string& sFileContent); 
 
int main(int argc, char* argv[]) 
{ 
  string sFileContent; 
  get_file_content("./test", sFileContent); 
  cout << sFileContent << endl; 
  return 0; 
}  
 
int get_file_content(string sFileName, string& sFileContent) 
{ 
  ifstream ifs (sFileName.c_str(), ifstream::in); 
 
  sFileContent.clear(); 
  char c; 
    while (ifs.get(c)){ 
    sFileContent.append(1, c); 
  } 
 
  ifs.close(); 
 
  return 0; 
} 
 
int set_file_content(string sFileName, string& sFileContent) 
{ 
  ofstream ofs(sFileName.c_str(), ofstream::binary); 
  size_t nCount = sFileContent.size(); 
  ofs.write (sFileContent.c_str(), nCount); 
  
  ofs.close(); 
 
  return nCount; 
} 

感謝閱讀,希望能幫助到大家,謝謝大家對本站的支持!

  1. 上一頁:
  2. 下一頁:
Copyright © 程式師世界 All Rights Reserved