I'd like to know the "recommended" way of reading and writing a file in clojure 1.3 .
- How to read the whole file
- How to read a file line by line
- How to write a new file
- How to add a line to an existing file
Thanks.
|
|
Assuming we're only doing text files here and not some crazy binary stuff. Number 1: how to read an entire file into memory.
Not recommended when it is a really big file. Number 2: how to read a file line by line.
The Number 3: how to write to a new file.
or with
Again, with-open takes care that the Number 4: append a line to an existing file.
Same as above, but now with append option. Or again with
PS: To be more explicit about the fact that you are reading and writing to a File and not something else, you could first create a File object and then coerce it into a
The file function is also in clojure.java.io. PS2: Sometimes it's handy to be able to see what the current directory (so ".") is. You can get the absolute path in two ways:
or
|
|||||||
|
|
If the file fits into memory you can read and write it with slurp and spit:
(s now contains the content of a file as a string)
This creates newfile.txt if it doesnt exit and writes the file content. If you want to append to the file you can do
To read or write a file linewise you would use Java's reader and writer. They are wrapped in the namespace clojure.java.io:
Note that the difference between slurp/spit and the reader/writer examples is that the file remains open (in the let statements) in the latter and the reading and writing is buffered, thus more efficient when repeatedly reading from / writing to a file. Here is more information: slurp spit clojure.java.io Java's BufferedReader Java's Writer |
|||||
|
|
Regarding question 2, one sometimes wants the stream of lines returned as a first-class object. To get this as a lazy sequence, and still have the file closed automatically on EOF, I used this function:
|
|||
|
|
|
This is how to read the whole file. If the file is in the resource directory, you can do this : (let [file-content-str (slurp (clojure.java.io/resource "public/myfile.txt")]) remember to require/use clojure.java.io Josh |
|||
|
|