首頁 > 後端開發 > C++ > 主體

如何使用 ifstream::read() 和 istreambuf_iterator 在 C 中以字元數組形式讀取檔案內容?

DDD
發布: 2024-11-01 00:57:02
原創
341 人瀏覽過

How to read file contents as a character array in C   using ifstream::read() and istreambuf_iterator?

如何用C 語言讀取檔案內容作為字元陣列

背景

這個問題🎜>背景

這個問題🎜>背景

這個問題詢問如何使用名為inputFile 的檔案的位元組填入字元數組緩衝區。使用者在使用其他建議的使用 getline() 而不是 ifstream::read() 的方法時遇到了困難。

有幾種方法可以解決此問題任務:

  1. 使用ifstream::read()
  2. 此方法涉及:
  3. 開啟檔案:
  4. 使用std::ifstream以二進位模式開啟文件,以避免字元翻譯。
  5. 決定檔案大小:
使用seekg()和tellg()取得檔案長度。

讀取資料:

呼叫read()將檔案內容讀入緩衝區,確保緩衝區大小足夠。
<code class="cpp">// Open file in binary mode
std::ifstream infile("C:\MyFile.csv", std::ios_base::binary);

// Get file length
infile.seekg(0, std::ios::end);
size_t length = infile.tellg();
infile.seekg(0, std::ios::beg);

// Read file
infile.read(buffer, length);</code>
登入後複製

示例代碼:

  1. 使用istreambuf_iterator
  2. 這種方法更現代,使用迭代器來讀取檔案:
  3. 建立一個Istreambuf_iterator:
  4. 將std::istreambuf_iterator(infile) 指派給開始迭代器,將std::istreambuf_iterator(iterator( ) 分配給結束迭代器。
  5. 使用向量儲存字元:
建立一個向量 std::vector;並將從開始到結束迭代器的所有字元推入向量。

將向量複製到陣列:

使用 std::copy 將向量資料分配到緩衝區。
<code class="cpp">// Create iterators
std::istreambuf_iterator<char> begin(infile);
std::istreambuf_iterator<char> end;

// Create vector
std::vector<char> contents(begin, end);

// Copy vector to array
std::copy(contents.begin(), contents.end(), buffer);</code>
登入後複製

範例程式碼:

  • 注意事項
  • 注意事項
  • 注意事項
注意事項注意事項注意事項注意事項注意事項注意事項 ifstream::如果檔案大小超過其大小,read() 可能會溢位緩衝區。考慮使用緩衝讀取或可調整大小的緩衝區。 錯誤處理:在嘗試讀取後使用 infile.fail() 或 infile.eof() 檢查潛在的讀取錯誤。 二進位模式:如果檔案包含非 ASCII 字符,請以二進位模式開啟它以保留其原始編碼。

以上是如何使用 ifstream::read() 和 istreambuf_iterator 在 C 中以字元數組形式讀取檔案內容?的詳細內容。更多資訊請關注PHP中文網其他相關文章!

來源:php.cn
本網站聲明
本文內容由網友自願投稿,版權歸原作者所有。本站不承擔相應的法律責任。如發現涉嫌抄襲或侵權的內容,請聯絡admin@php.cn
熱門教學
更多>
最新下載
更多>
網站特效
網站源碼
網站素材
前端模板
關於我們 免責聲明 Sitemap
PHP中文網:公益線上PHP培訓,幫助PHP學習者快速成長!