So my understanding is that JARs can have a hierarchy of files and folders. So if I want to JAR up the following file structure:
someDir/
anotherDir/
yetAnotherDir/
widget.java
foo.java
someFile.jpg
anotherFile.qfx
The convention I'm using is the Linux forward-slash ("/"). On Windows it would be a backwards slash ("\") to demarcate file paths.
Is it that Java JARs up file hierarchies into a uniform, platform-independent structure, so that the same JAR can be run off a Windows and Linux machine alike? Or do JARs prefer a particular schema (Windows or Linux) for file paths and use that under the hood?
Thanks!