Erlang dets 转 txt
如何将dets中存储的信息写入txt文件?
谢谢。
How can i write information which store in dets to txt file?
Thank you.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
如何将dets中存储的信息写入txt文件?
谢谢。
How can i write information which store in dets to txt file?
Thank you.
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
接受
或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
发布评论
评论(2)
由于您几乎没有提供有关您的意思或打算做什么的信息,因此我能给您的唯一建议就是阅读 dets 手册。您可能需要的函数是:
dets:open_file/1
或dets:open_file/2
打开包含信息的文件。dets:traverse/2
遍历存储中的数据,传递一个fun
来执行您想要的任何操作(在本例中写入文本文件)。dets:close/1
关闭数据存储。如果你想要更具体的建议,或者你正在考虑一些完全不同的事情,你就必须提出一个更好的问题——例如,一个有细节的问题。
Since you've provided little to no information on what you mean or what you intend to do, the only advice I can give you is to read the dets manual. The functions you'll likely need are:
dets:open_file/1
ordets:open_file/2
to open the file that has the information in it.dets:traverse/2
to walk over the data in your store passing in afun
that does whatever you want (in this case writing to a text file).dets:close/1
to close the data store.If you want more specific advice or if you're thinking of something entirely different you'll have to ask a better question—one that has details, for example.
“只是我的正确意见”的答案示例位于“Mnesia 用户指南”中。
http://www.erlang.org/doc/apps/mnesia/Mnesia_chap7 .html#id75830
An example of the answer by "JUST MY correct OPINION" is in "Mnesia User's Guide".
http://www.erlang.org/doc/apps/mnesia/Mnesia_chap7.html#id75830