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.
我有一个从大型机生成的 EBCDIC 文件,需要将其转换为 ASCII 以进行数据处理。 任何帮助,将不胜感激。
由于 [Ruby 2.3 EBCDIC 编码可用][1]:
编码 新编码::IBM037(别名 ebcdic-cp-us;虚拟)
编码
新编码::IBM037(别名 ebcdic-cp-us;虚拟)
所以这应该工作:
src = 'out_26877296.tst' content = File.read(src, encoding: 'IBM037:ASCII')