> Erlang中文手册 > fread/3 读入一个格式化的数据

io:fread/3

读入一个格式化的数据

用法:

fread(IoDevice, Prompt, Format) -> Result

从一个指定输出端 IoDevice 里读入一个指定格式 Format 的数据,参数 Format 的用法跟 io:format/2 里的 Format 参数一样。如果输入的数据跟期望的格式 Format 数据不一样的话,则抛出一个错误。

假如有一个名为 test.txt 的文件,其内容如下:

{line1, "a", "b", [{key1, val1}]}.
{line2, "c", "d", [{key2, val2}]}.

那么可以用 io:fread/3 读取 test.txt 文件里的数据:

{ok, IoDevice} = file:open("test.txt", [read]),
{ok, [Input]} = io:fread(IoDevice, "", "~s").