How to run java .class file from a script providing some command line parameters? The script is built using autohotkey framework. Can we trigger the execution of .class files from a script? Please let me know if I am wrong.
How to run java .class file from a script providing some command line parameters?
Share
I am not familiar with autohotkey, but if your command line is something like
you are good to go, I guess.
ADDITION:
It seems to me that the Run directive allows you to do that. Assuming to have your
MyClass.classfile (with MyClass in the default package) inC:\mypath, I expect you have to issue something likeI am not able to verify the above line, since I do not have a Windows installation at hand.