How to read all bytes from a resource file in Clojure
Clarice Bouwer

Clarice Bouwer @cbillowes

About: Curious programmer sharing byte-sized knowledge on dev.to. Passionate about Git, GCP, TypeScript, Next.js, and DevTools. Enjoys collaborating with others and leading by example.

Location:
Mauritius
Joined:
May 30, 2018

How to read all bytes from a resource file in Clojure

Publish Date: Aug 16 '23
0 0
(-> "images/something.jpg"
     io/resource
     io/file
     .toPath
     java.nio.file.Files/readAllBytes)
Enter fullscreen mode Exit fullscreen mode

It is important to note that the resource is located in your resources directory so use a path relative to your application or components root directory.

Comments 0 total

    Add comment