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.
我在动作脚本中读取了一个文件,这种文件可能是 ASCII 或二进制格式。
如何检查读取时使用的格式?
问候。
您可以从文件中读取字节值,并尝试根据您读取的字节值进行猜测。如果您读取大量值介于 65-128(大约)之间的字节,则很可能是“ASCII”格式。检查www.asciitable.com并选择您期望出现和不会出现在 ASCII/二进制文件中的 ascii 代码。