I am working on a .jar file library to implement a bunch of helper classes for interacting with a piece of PC external hardware. I will also add some simple applications, both command line and GUI, to handle common tasks using the library.
My question is, is there a recommended way to simplify a JVM command line instance in a certain way?
eg. instead of requiring the user to enter a critical error, for example:
java -cp TurboBlenderLib.jar -jar TurboBlenderApp.jar -DFoo=Bar arg1 arg2
instead i do
TurboBlenderApp arg1 arg2
?
I suppose I could use shell scripts (including win32 batch files ... gacckkk), it's just that I am not good at these +. I was wondering if there was a simpler platform-independent way to launch a Java application from the command line.