您可以將有效負載寫入文件並使用std::ifstream
來讀取它。這將允許您更改有效內容,而無需重新編譯。
如果你真的希望將其存儲爲二進制數據,你可以使用一個字符數組,並初始化它這樣:
const unsigned char raw_data[] = {
0x21, 0x20, 0xc2, 0xa6, 0xc3, 0xb4, 0xc2, 0xbf,
0xc3, 0x82, 0xc3, 0x8b, 0xc2, 0xa4, 0x20, 0xc3,
0x8d, 0xc3, 0x8c, 0x4c, 0x3f, 0x20, 0x20, 0xc3,
0x80, 0xc3, 0xbf, 0x20, 0x20, 0xc3, 0x80, 0xc3,
0xbf, 0xc2, 0xa5, 0x20, 0xc5, 0xa1, 0xe2, 0x84,
0xa2, 0xc2, 0xa9, 0x40, 0x20, 0x20, 0xc3, 0x80,
0xc3, 0xbf, 0x20, 0x20, 0xc3, 0x80, 0xc3, 0xbf,
0x60, 0x20, 0x6f, 0x72, 0x20, 0x60, 0x21, 0x20,
0x48, 0xc2, 0xb7, 0xc3, 0xb4, 0xc2, 0xbf, 0xc3,
0x82, 0xc3, 0x8b, 0xc2, 0xa4, 0x20, 0xc3, 0x8d,
0xc3, 0x8c, 0x4c, 0x3f, 0x20, 0x20, 0xc3, 0x80,
0xc3, 0xbf, 0x33, 0x33, 0x33, 0x3f, 0xc2, 0xa5,
0x20, 0xc5, 0xa1, 0xe2, 0x84, 0xa2, 0xc2, 0xa9,
0x40, 0x20, 0x20, 0xc3, 0x80, 0xc3, 0xbf, 0x66,
0x66, 0xc2, 0xa6, 0x40, 0x0a,
};
std::string data(
reinterpret_cast< const char* >(raw_data),
reinterpret_cast< const char* >(raw_data) + sizeof(raw_data));
哦,順便說一句,我使用轉換你的有效載荷,以緩衝以下簡單的Python代碼:
#!/usr/bin/python
def convert_file(path, stream):
data = open(path, 'rb').read()
stream.write('const unsigned char raw_data[] = {')
for i, char in enumerate(data):
if i % 8 == 0:
stream.write('\n ')
stream.write(' 0x%02x,' % (ord(char),))
stream.write('\n};\n')
if __name__ == '__main__':
import sys
convert_file(sys.argv[1], sys.stdout)
我想的有效載荷存儲在一個文件,但接縫像我必須把不同的有效載荷在不同的文件,因爲我不知道該用什麼分隔符。你也知道,如果我能得到一個腳本或命令從二進制數據中獲取char數組?謝謝 – Arthur 2011-02-02 10:55:22