방법: 이진 파일 쓰기(C++/CLI)
다음 코드 예제에서는 파일에 이진 데이터를 쓰는 방법을 보여 줍니다. System.IO 네임스페이스의 두 클래스인 FileStream과 BinaryWriter가 사용됩니다. FileStream은 실제 파일을 나타내고 BinaryWriter는 이진 액세스를 허용하는 인터페이스를 스트림에 제공합니다.
다음 코드 예제에서는 정수가 포함된 파일을 이진 형식으로 씁니다. 이 파일은 방법: 이진 파일 읽기(C++/CLI)에 나와 있는 코드를 사용하여 읽을 수 있습니다.
예제
// binary_write.cpp
// compile with: /clr
#using<system.dll>
using namespace System;
using namespace System::IO;
int main()
{
array<Int32>^ data = {1, 2, 3, 10000};
FileStream^ fs = gcnew FileStream("data.bin", FileMode::Create);
BinaryWriter^ w = gcnew BinaryWriter(fs);
try
{
Console::WriteLine("writing data to file:");
for (int i=0; i<data->Length; i++)
{
Console::WriteLine(data[i]);
w->Write(data[i]);
}
}
catch (Exception^)
{
Console::WriteLine("data could not be written");
fs->Close();
return -1;
}
fs->Close();
return 0;
}