0
有一個二進制文件'test.dat'。我需要將其轉換爲文本,做一些更改,並將其另存爲二進制文件。使用Erlang將二進制文件轉換爲文本,反之亦然
我是能夠轉換爲文本:
erl -noinput -eval 'case file:read_file("test.dat") of {ok, B} -> io:format("~p~n", [binary_to_term(B)]) end.' -run init stop > test.text
但是我沒有想法,如何保存文本爲現在的二進制文件?