Blog Archive for May 28, 2015

Accessing Files in a JAR

May 28, 2015

I wanted to have text files in my Java project that I could read and process in a Java program. I wanted this to work both when running code in Eclipse, and when running an executable JAR file of the same code.

I added a marker.txt file at top of …