|
Re: question about java arguments
|
Posted: Jan 15, 2003 2:18 PM
|
|
I think you have come across this content in a .bat file. Suppose the file name is abc.bat, which has this content then on DOS prompt you will invoke the bat file as:
c:>abc.bat arg1 arg2 arg3
Here whatever you supply for arg1 is substituted for %1, arg2 for %2 etc. Therefore the above command is translated to c:>java jnetmon.main arg1 arg2 arg3
For futher details please read about DOS bat file creation and parameter substitution in a bat file using %1, %2 etc. Thanks Kishori
|
|