Reading from a file within a JAR
TL;DR: When reading resources from a file in Java it is better to use an `InputStream` rather than a `File`. Using `InputStream` allows you to read content regardless of where the resource file is located. Recently in one of the projects I'm working...
Jan 25, 20234 min read708

