CArchive::WriteString
Utilisez cette fonction membre pour écrire des données d'une mémoire tampon au fichier associé à l'objet d' CArchive .
void WriteString(
LPCTSTR lpsz
);
Paramètres
- lpsz
Spécifie un pointeur vers une mémoire tampon qui contient une chaîne de texte se terminant par null.
Notes
Le caractère NULL de fin (" \ 0 ") n'est pas écrit dans le fichier ; ni est un saut de ligne automatiquement écrit.
WriteString lève une exception en réponse à plusieurs conditions, y compris l'état terminé disque.
Write est également disponible, mais plutôt que de fin sur un caractère Null, il écrit le nombre d'octets demandé au fichier.
Exemple
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);
Configuration requise
Header: afx.h