Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
Conjure では、長いファイルを読み込む必要があり、長すぎて読み込めません。また、開いているファイル ポインターをメソッドに渡したいと考えています。このメソッドは、再帰的に呼び出すことができ、空になるまで読み取ります。open-with を使用した例を見つけましたが、ファイルを開いて関数内で読み取る方法はありますか? 例やドキュメントへのポイントは役に立ちます。
遊んでみると答えが見つかりました。
(defn transfer [inFile outFile] (.write outFile (.read inFile)) ... ... (transfer (clojure.java.io/reader "fileIn.txt) (clojure.java.io/writer "out.txt"))