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.
有没有相当于 Python 的 Clojure 的StingIO的东西?
我正在尝试为 Clojure编写类似于Sweave和Pweave的报告生成/读写编程系统。我目前正在使用临时文件,但我更喜欢使用类似于 StringIO 的东西。
with-out-str非常方便。
(let [foo (with-out-str (println "Hello world!"))] foo)
更多文档在这里
java.io.StringWriter:http: //download.oracle.com/javase/6/docs/api/java/io/StringWriter.html