clojure – 保存图像表单clj-http请求到文件

clojure – 保存图像表单clj-http请求到文件,第1张

概述我正在尝试保存使用 clj-http下载的文件 我有以下代码: (def test-file (cl/get "http://placehold.it/350x150"))(defn write-file [] (with-open [w (clojure.java.io/writer "test-file.gif" :append true)](.write w (:body 我正在尝试保存使用 clj-http下载的文件

我有以下代码:

(def test-file  (cl/get "http://placehold.it/350x150"))(defn write-file []   (with-open [w (clojure.java.io/writer  "test-file.gif" :append true)](.write w (:body test-file))))

当我尝试使其成为一个字节数组时,我得到一个例外:

user=>     (def test-file                    (cl/get "http://placehold.it/350x150" {:as :byte-array}))       #'user/test-file       user=> (write-file)       IllegalArgumentException No matching method found: write for class java.io.BuffereDWriter  clojure.lang.Reflector.invokeMatchingMethod (Reflector.java:79)

帮帮我!

解决方法 使用二进制输出.
(def test-file  (clIEnt/get "http://placehold.it/350x150" {:as :byte-array}))(defn write-file []   (with-open [w (java.io.bufferedoutputstream. (java.io.fileOutputStream. "test-file.gif"))]     (.write w (:body test-file))))

编辑:
输出流越好:

(defn write-file []   (with-open [w (clojure.java.io/output-stream "test-file.gif")]     (.write w (:body test-file))))

更新:

优雅的方式:

(clojure.java.io/copy (:body (clIEnt/get "http://placehold.it/350x150" {:as :stream})) (java.io.file. "test-file.gif"))
总结

以上是内存溢出为你收集整理的clojure – 保存图像表单clj-http请求到文件全部内容,希望文章能够帮你解决clojure – 保存图像表单clj-http请求到文件所遇到的程序开发问题。

如果觉得内存溢出网站内容还不错,欢迎将内存溢出网站推荐给程序员好友。

欢迎分享,转载请注明来源:内存溢出

原文地址: http://outofmemory.cn/web/1101394.html

(0)
打赏 微信扫一扫 微信扫一扫 支付宝扫一扫 支付宝扫一扫
上一篇 2022-05-28
下一篇 2022-05-28

发表评论

登录后才能评论

评论列表(0条)

保存