I'm still new to java and this is my first time trying to make something like a program that works without having jdk installed.
So I have my EditExcel.java and .class along with 6 .jar files which get imported in the EditExcel file via import.
Currently to run the program I need to use:
java -cp poi-4.0.1.jar;(some more jars);xmlbeans-3.0.2.jar;. EditExcel
to execute my .class file. I try to make this usable on a computer without jdk installed, so I can't use the java command. So I thought about making this into an .exe or .jar but I don't even know where to start and how to do it. I don't use an IDE but if its too complicated/inconvenient without I would try one.
So first off all would you recommend using a .jar or .exe and how do I get started? Thank you very much for helping me and sorry if this is something obvious.