Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
所以我正在尝试读取文件的字节。我创建了一个仅使用 file.read() 并遍历字节的脚本。它涉及一个看起来像的角色
[ 0 0 ] [ 0 3 ]
我想我真正的问题是:这个角色代表什么?当我查看十六进制编辑器时,它显示为 ú,这是有道理的,因为十六进制是 FA。
file.read将获取声明文件的二进制内容并将其填充到缓冲区中。
file.read
00 和 03 是控制字符 (00 = NULL, 03 = END OF TEXT)。您可能有兴趣参考 ASCII 表以了解更多详细信息。
NULL
END OF TEXT
ASCII 表:http ://www.asciitable.com/index/asciifull.gif