2
我需要將Int轉換的字符串導出爲二進制數據,所以我可以在微控制器中使用它。如何在ruby 2.2.4(Windows)中序列化和導出數據?
下面是部分代碼:
def save_hex
text_hex = File.new("hex_#{@file_to_translate}.txt", "a+")
@text_agreschar.each_with_index do |string_agreschar, index|
string_hex = ''
string_agreschar.each do |char_agreschar|
string_hex << char_agreschar.agres_code.to_i
end
text_hex.print(string_hex)
text_hex.puts('')
end
end
我需要我的「string_hex」導出到一個二進制文件,而不是文字。
附言:我在Windows 7
太謝謝你了...問題解決了!那正是我所期待的。 –