I'm trying to find an easy way for my users to launch a
Java program on the Microsoft Windows operating system. I wanted something a little more user friendly than a batch file.
I took a look at JSmooth, which is exactly what I need, but it doesn't seem to have a way to permit "dynamic" command line arguments for the JVM. (For example, with a batch file I can read the command line arguments for the JVM from a text file.)
I had thought about writing my own application launcher as a separate Java program. This launcher program would have a simple GUI that would allow the user to select the start-up options, and would then use the runtime.exec() method to launch my main application.
I am wondering how other developers handle this situation. Is there a better solution that I am missing?
Landon