I have a very simple JAVA app that is distributed as a single Windows executable file and I would like to run it on a Linux computer. I could extract the content of the exe file with 7-zip, but I don't know what to do next.
There are multiple levels of subfolders with .class files and image files for the software's user interface (no source files).
The root folder doesn't contain any class files, but it contains many subfolders, including a META-INF subfolder. This META-INF folder contains one MANIFEST.MF file, in which there is a line like this: Main-Class: subfolder1.subfolder2.Software
How can I make it run? Is there a way to run it on a Linux computer's JVM?