Skip to content

Latest commit

 

History

History
11 lines (11 loc) · 417 Bytes

README.md

File metadata and controls

11 lines (11 loc) · 417 Bytes

File2ByteArray


将文件转换成字节集

请使用Visual Studio编译。

使用方法:在主程序里引用生成出来的"data.h",在函数里插入以下代码:

	int size = sizeof(binary_bin);
	ofstream output_file("文件路径\文件名", ios::binary);
	output_file.write(reinterpret_cast<const char *>(binary_bin), size);
	output_file.close();

即可生成源文件。