Bin二進(jìn)制文件編輯工具,好像UltraEdit可以查看bin文件,但不知道是否可以直接編輯文件?
另外,有什么C,C++,Python實(shí)現(xiàn)方式,可以編輯二進(jìn)制文件?
小伙看你根骨奇佳,潛力無限,來學(xué)PHP伐。
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();
}