共用方式為


CArchive::WriteString

使用這個成員函式寫入緩衝區的資料儲存至檔案與 CArchive 物件。

void WriteString(
   LPCTSTR lpsz 
);

參數

  • lpsz
    指定指標指向包含 null 結尾字串的緩衝區。

備註

結束的 null 字元 (「\ 0 ") 就不會寫入檔案,也不會自動以撰寫的換行字元。

WriteString 擲回例外狀況以回應幾個條件,包括這個磁碟完整的情況。

寫入 也是可用的,不過,而不是以 null 結束字元,它會將要求的位元組數至檔案。

範例

CFile myFile(_T("My__test__file.dat"), 
   CFile::modeCreate | CFile::modeReadWrite);
CString str1("String1"), str2("String2"), str;

// Create a storing archive.
CArchive arStore(&myFile, CArchive::store);

// Write str1 and str2 to the archive
arStore.WriteString(str1);
arStore.WriteString(_T("\n"));
arStore.WriteString(str2);
arStore.WriteString(_T("\n"));

// Close the storing archive
arStore.Close();

// Create a loading archive.
myFile.SeekToBegin();
CArchive arLoad(&myFile, CArchive::load);

// Verify the two strings are in the archive.
arLoad.ReadString(str);
ASSERT(str == str1);
arLoad.ReadString(str);
ASSERT(str == str2);

需求

Header: afx.h

請參閱

參考

CArchive 類別

階層架構圖