首頁 >後端開發 >C++ >為什麼將 std::string 寫入檔案會產生框而不是文字?

為什麼將 std::string 寫入檔案會產生框而不是文字?

Linda Hamilton
Linda Hamilton原創
2024-11-26 21:00:171013瀏覽

Why Does Writing a std::string to a File Produce Boxes Instead of Text?

如何在不看到框的情況下將std::string 寫入文件

問題:

使用write() 方法將std::string變數寫入檔案時,產生的檔案顯示框而不是預期的 細繩。 std::string 是否適合這種情況,還是應該考慮替代方法?

答案:

std::string 確實適合寫入文件,但 write() 方法適用於二進位資料。若要以文字格式寫入字串,請考慮使用 ofstream 物件。舉個例子:

#include <fstream>
#include <string>
#include <iostream>

int main() {
    std::string name;
    std::cout << "Enter your name: ";
    std::cin >> name;
    std::ofstream out("name.txt");
    out << name;  // Writes the string to the file in text format
    out.close();
    return 0;
}

對於二進位寫入,使用c_str()方法取得底層字元資料並寫入檔案:

#include <fstream>
#include <string>
#include <iostream>

int main() {
    std::string password;
    std::cout << "Enter your password: ";
    std::cin >> password;
    std::ofstream out("password.bin", std::ios::binary);
    out.write(password.c_str(), password.size());  // Writes the password in binary format
    out.close();
    return 0;
}

以上是為什麼將 std::string 寫入檔案會產生框而不是文字?的詳細內容。更多資訊請關注PHP中文網其他相關文章!

陳述:
本文內容由網友自願投稿,版權歸原作者所有。本站不承擔相應的法律責任。如發現涉嫌抄襲或侵權的內容,請聯絡admin@php.cn