한글을 바이너리 데이터로 변환하자
1> %% utf-8 encode data 만들기
1> B = unicode:characters_to_binary("한글", utf8).
<<237,149,156,234,184,128>>
? 디코드
-> unicode:characters_to_list(B).
2> %% 출력
2> io:format("~ts~n", [B]).
한글
ok
3> %% 실행 경로 변경
3> cd("d:").
D:/
ok
4> %% 파일 저장
4> file:write_file("/tmp/test", [B]).
ok
'Erlang' 카테고리의 다른 글
Symmetric Multiprocessing (SMP:대칭형 다중처리) (0) | 2015.08.28 |
---|---|
분산 테스트 (0) | 2015.08.17 |
참조 투명성? (0) | 2015.08.04 |
Erlang/OTP 란? (0) | 2015.08.03 |