国产av日韩一区二区三区精品,成人性爱视频在线观看,国产,欧美,日韩,一区,www.成色av久久成人,2222eeee成人天堂

python - Bin二進(jìn)制文件編輯工具及方式?
伊謝爾倫
伊謝爾倫 2017-04-17 13:19:41
0
4
592

Bin二進(jìn)制文件編輯工具,好像UltraEdit可以查看bin文件,但不知道是否可以直接編輯文件?

另外,有什么C,C++,Python實(shí)現(xiàn)方式,可以編輯二進(jìn)制文件?

伊謝爾倫
伊謝爾倫

小伙看你根骨奇佳,潛力無限,來學(xué)PHP伐。

reply all(4)
伊謝爾倫

1.UltraEdit can edit binary files
2. For C/C++, you can check fopen() and fwrite()

巴扎黑

It can be edited. There are also tools such as HxD, WinHex.

To implement programming, just use the relevant API to open the file and read and write in binary mode. For example, C++:

ofstream result;
result.open("output.bin", ios::out | ios::binary);
if(result.is_open()){
    //result.put(data);
    result.close();
}
巴扎黑

vim :%!xxd

劉奇

010 editor.

Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template