How to read sexp from file

孤街醉人 提交于 2021-02-05 05:38:05

问题


If I write a file using

(with-open-file (s "~/example.sexp" :direction :output)
           (write '(1 2 3) :stream s)
           (write '(4 5 6) :stream s)
           (write '(7 8 9) :stream s))

A file is created containing

(1 2 3)(4 5 6)(7 8 9)

But when I attempt to open and read it using

(setf f (open "~/example.sexp"))
(read :input-stream f)

I get an ":INPUT-STREAM is not of type STREAM" error.

(type-of f)

returns STREAM::LATIN-1-FILE-STREAM which looks like it is at least close to what I need. What is the difference?

How can I read the lists I've written to the file?


回答1:


You got the arguments to READ wrong. It should be simply (read f), not (read :input-stream f).




回答2:


You can also use with-open-file:

(with-open-file (s "~/example.sexp")
  (read s))

Or even:

(with-open-file (*standard-input* "~/example.sexp")
  (read))

:input is the default direction.



来源:https://stackoverflow.com/questions/4119509/how-to-read-sexp-from-file

标签
易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!