如何:编写二进制文件 (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;
}