论坛首页 综合技术论坛

erlang对行读的支持

浏览 2411 次
精华帖 (0) :: 良好帖 (0) :: 新手帖 (0) :: 隐藏帖 (0)
作者 正文
   发表时间:2009-09-24   最后修改:2009-09-24
在处理文本文件的时候,基本上是以行为单位处理,特别是unix,无数的工具和算法基于这个line.

erlang在这方面支持的也非常好,极大的方便了用户。 erlang的数据大概有4个来源,在最近的R13B02这些来源都支持行读。

1. IO比如标准输入。
io:get_line([IoDevice,] Prompt) -> Data | eof | {error,Reason}
Types:
Reads a line from the standard input (IoDevice), prompting it with Prompt.

2. port,就是unix的管道,从其他的程序读取。
open_port(PortName, PortSettings) -> port()
{line, L}
Messages are delivered on a per line basis.

3. 文件。
file:read_line(IoDevice) -> {ok, Data} | eof | {error, Reason}
%%新加入的特性
Reads a line of bytes/characters from the file referenced by IoDevice.

4.网络。

底层调用的都是这个函数解码。
decode_packet(Type,Bin,Options) -> {ok,Packet,Rest} | {more,Length} | {error,Reason}

line
A packet is a line terminated with newline. The newline character is included in the returned packet unless the line was truncated according to the option line_length.


结论:
有了这些特性, 我等就无需自己费心费力的去分解行, 把轻松留给我们,谢谢erlang.


   发表时间:2009-09-25  
我一直对“行“这个东西心怀恐惧,因为行与行之间的那个分隔符(也就是换行符了)不大统一。
0 请登录后投票
   发表时间:2009-09-25  
erlang处理掉了这个问题。
0 请登录后投票
   发表时间:2009-09-25  
嘿嘿,文件使用raw模式打开,使用file:read_line 更高效了...
0 请登录后投票
   发表时间:2009-09-25  
mryufeng 写道
erlang处理掉了这个问题。


我猜它的处理和java一样,取操作系统标识,然后处理,
如果碰到不同系统互传文件的情况就不大可靠了吧。
0 请登录后投票
   发表时间:2009-09-25  
不就是 \r\n 的排列组合码?有那么难?
0 请登录后投票
   发表时间:2010-03-02  
erlang对Line的定义是 \n结束的, 其他的它不管, 还是要自己处理.
0 请登录后投票
论坛首页 综合技术版

跳转论坛:
Global site tag (gtag.js) - Google Analytics