<rt id="bn8ez"></rt>
<label id="bn8ez"></label>

  • <span id="bn8ez"></span>

    <label id="bn8ez"><meter id="bn8ez"></meter></label>

    ivaneeo's blog

    自由的力量,自由的生活。

      BlogJava :: 首頁 :: 聯系 :: 聚合  :: 管理
      669 Posts :: 0 Stories :: 64 Comments :: 0 Trackbacks

    勤奮的 litaocheng 同學,在每日超負荷的加班工作之余,仍然刻苦學習筆耕不輟,為我們不斷帶來勁爆文章,這一篇《Erlang的Unicode支持》為我們介紹了 R13 的最新特性,也是最被大家期望的特性——內置的 Unicode 支持。廢話少說,直接上正文。

    在R13A中, Erlang加入了對Unicode的支持。本文涉及到的數據類型包括:list, binary, 涉及到的模塊包括stdlib/unicode, stdlib/io, kernel/file。

    Binary

    Binary的type屬性增加了utf相關的type:utf8, utf16, utf32,其分別對應UTF8, UTF16,UTF32編碼。

    Binary Constructing

    在Binary構建時, 如果指定了utf相關類型,那么對應的integer的Value必須位于:0..16#D7FF, 16#E000..16#FFFD, 或者 16#10000..16#10FFFF這三個區間中。否則將會提示’bad argument’,參數錯誤。根據指定的的utf類型不同,同一個數據產生的binary不同。

    對于utf8,每個integer生成1到4個字符;對于utf16,每個integer生成2或4個字符;對于utf32,每個integer生成4個字符。

    比如, 使用unicode為1024的字符A, 構建一個binary:

    1<<1024/utf8>>.    
    <<208,128>>
    2<<1024/utf16>>.
    <<4,0>>
    3<<1024/utf32>>.
    <<0,0,4,0>>

    Binary Match

    當進行Binary Match時,如果指定utf相關類型,變量成功匹配后,將擁有一個位于:0..16#D7FF, 16#E000..16#FFFD, 或者 16#10000..16#10FFFF這三個區間中的integer。

    其更具utf類型的不同,消耗(match)不同數目的bytes。

    • utf8匹配1-4個bytes(參考RFC-2279)
    • utf16匹配2 或 4 個bytes (參考 RFC-2781)
    • utf32匹配4個 bytes

    比如:繼續我們上面的例子

    4Bin = <<1024/utf8>>.
    <<208,128>>
    5<<U/utf8>> = Bin.
    <<208,128>>
    6U.
    1024

    這個例子中,U匹配了2個bytes。對于utf相關類型,不能指定unit spec。

    List

    在list中,每個unicode字符采用integer來表示,因此與latin1的list相比,unicode list中,element的數值可以大于255。下面就是一個有效的unicode list: [1024, 1025]

    我們可以通過unicode 模塊實現 list到binary的轉換。

    unicode module

    首先請參看下面的type定義:

    unicode_binary() = binary() with characters encoded in UTF-8 coding standard
    unicode_char() = integer() representing valid unicode codepoint
    chardata() = charlist() | unicode_binary()
    charlist() = [unicode_char() | unicode_binary() | charlist()]
    a unicode_binary is allowed as the tail of the list

    external_unicode_binary() = binary() with characters coded in a user specified Unicode encoding other than UTF-8 (UTF-16 or UTF-32)
    external_chardata() = external_charlist() | external_unicode_binary()
    external_charlist() = [unicode_char() | external_unicode_binary() | external_charlist()]
    an external_unicode_binary is allowed as the tail of the list

    latin1_binary() = binary() with characters coded in iso-latin-1
    latin1_char() = integer() representing valid latin1 character (0-255)
    latin1_chardata() = latin1_charlist() | latin1_binary()
    latin1_charlist() = [latin1_char() | latin1_binary() | latin1_charlist()]
    a latin1_binary is allowed as the tail of the list

    我們可以調用unicode:characters_to_list/1 將chardata或latin1_chardata或external_chardata()轉化成一個unicode list。

    如果參數為latin1_chardata,那么Data參數就是一個iodata. 返回的結果list中,每個element為一個integer。默認情況 unicode:characters_to_list/1調用unicode:characters_to_list(Data, unicode)

    如果我們的CharData為其他類型,我們可以指明InEncoding type。如果此函數執行成功,返回{ok, List},如果失敗返回{error, list(), RestData}, 其中list為轉化成功的部分,RestData為發生錯誤的位置。

    我們也可以調用unicode:characters_to_binary/1,將chardata或latin1_chardata或 external_chardata()轉化成一個binary。這個函數和unicode:characters_to_list類似,只是結果保存為 binary。

    如果Data為latin1_chardata, 那么unicode:characters_to_binary/1和 erlang:iolist_to_binary/1功能相同

    unicode模塊中,還有兩個于bom相關的函數,可以根據bom指返回對應的encoding類型,也可以根據encoding類型生成對應的bom值。其在保存文件時,經常使用.

    Examples

    1, 打開utf8保存的文件

    文件內容如下test.file:

    [
    desc"這是一個測試文件"},
    {
    author"litaocheng"}
    ].

    其格式為erlang term,保存時選擇utf8編碼。
    代碼如下:

    1. %% read content from the file
    2. test1() ->
    3.     {ok[Terms]} = file:consult("test.txt"),
    4.     Desc = proplists:get_value(descTerms),
    5.     _Author = proplists:get_value(authorTerms),
    6.    
    7.     % out put the Desc and Author
    8.     DescUniBin = iolist_to_binary(Desc),
    9.     DescUniList = unicode:characters_to_list(DescUniBin),
    10.     io:format("desc bin : ~ts~ndesc bin : ~p~n",[DescUniBin,DescUniBin]),
    11.     io:format("desc list: ~ts~ndesc list: ~p~n"[DescUniList,DescUniList]).

    結果:

    desc bin : 這是一個測試文件
    desc bin : <<232,191,153,230,152,175,228,184,128,228,184,170,230,181,139,232,
                 175,149,230,150,135,228,187,182>>
    desc list: 這是一個測試文件
    desc list: [36825,26159,19968,20010,27979,35797,25991,20214]

    首先將內容從list轉換為binary, DescUniBin 便是對應的unicode binary。隨后通過unicode:characters_to_list/1轉化為unicode list最后輸出。
    我們可以看到 unicode list中所有的element為integer, unicode binary中unicode string采用uft8編碼。

    2, 將數據保存成uft8格式

    1. %% save the binary in utf8 format
    2. test2() ->
    3.     [DescList] = io_lib:format("~ts"["這是一個測試文件"]),
    4.     DescBin = erlang:iolist_to_binary(DescList),
    5.     DescList2 = unicode:characters_to_list(DescBin),
    6.     List = lists:concat(["[{desc,\""DescList2"\"}, {author,\"litaocheng\"}]."]),
    7.     Bin = unicode:characters_to_binary(List),
    8.     io:format("bin is:~ts~n"[Bin]),
    9.     file:write_file("test_out.txt"Bin).

    這個例子的完整代碼如下:

    1. -module(unicode_test).
    2. -compile([export_all]).
    3.  
    4. %%
    5. %% the test.txt content:
    6. %% [
    7. %% {desc, "這是一個測試文件"},
    8. %% {author, "litaocheng"}
    9. %% ].
    10. %%
    11.  
    12. test() ->
    13.     test2(),
    14.     test1().
    15.  
    16. %% read content from the file
    17. test1() ->
    18.     {ok[Term]} = file:consult("test_out.txt"),
    19.     Desc = proplists:get_value(descTerm),
    20.     _Author = proplists:get_value(authorTerm),
    21.    
    22.     % out put the Desc and Author
    23.     DescUniBin = iolist_to_binary(Desc),
    24.     DescUniList = unicode:characters_to_list(DescUniBin),
    25.     io:format("desc bin : ~ts~ndesc bin : ~p~n",[DescUniBin,DescUniBin]),
    26.     io:format("desc list: ~ts~ndesc list: ~p~n"[DescUniList,DescUniList]).
    27.  
    28.  
    29. %% save the binary in utf8 format
    30. test2() ->
    31.     [DescList] = io_lib:format("~ts"["這是一個測試文件"]),
    32.     DescBin = erlang:iolist_to_binary(DescList),
    33.     DescList2 = unicode:characters_to_list(DescBin),
    34.     List = lists:concat(["[{desc,\""DescList2"\"}, {author,\"litaocheng\"}]."]),
    35.     Bin = unicode:characters_to_binary(List),
    36.     io:format("bin is:~ts~n"[Bin]),
    37.     file:write_file("test_out.txt"Bin).
    posted on 2009-10-28 15:19 ivaneeo 閱讀(1416) 評論(1)  編輯  收藏 所屬分類: erlang-分布式語言
    主站蜘蛛池模板: 美女裸免费观看网站| 亚洲福利视频网址| 老司机午夜精品视频在线观看免费 | 亚洲最大的成网4438| 国产精品99久久免费观看| 亚洲综合日韩久久成人AV| 久久精品免费大片国产大片| 亚洲日本韩国在线| 9久热这里只有精品免费| 亚洲区小说区图片区QVOD| 国内精品久久久久影院免费| 亚洲va无码va在线va天堂| 99国产精品视频免费观看| 亚洲成年人免费网站| 最近中文字幕mv免费高清电影| 久久亚洲精品国产亚洲老地址| 德国女人一级毛片免费| 风间由美在线亚洲一区| 亚洲五月午夜免费在线视频| 手机看片国产免费永久| 老色鬼久久亚洲AV综合| 成年女人免费碰碰视频| 羞羞网站免费观看| 国产亚洲av片在线观看播放| 69影院毛片免费观看视频在线| 亚洲国产日韩视频观看| 亚洲av无码天堂一区二区三区| 国产男女爽爽爽免费视频| 久久久国产精品亚洲一区| 午夜视频免费观看| 久久一区二区三区免费| 亚洲韩国在线一卡二卡| 免费毛片在线播放| 两个人日本WWW免费版| 亚洲欧洲中文日产| 免费在线观看黄网站| 无码日韩精品一区二区免费暖暖 | 日韩精品视频在线观看免费| 亚洲AV无码国产在丝袜线观看| 99久久综合国产精品免费| 一级做a爰片久久毛片免费陪|