quick question: what is the proper way to supply command line parameters (ie. -b, -verbose, etc) to the javac program? do they need to be comma delimited? An example would be appreciated! Thank you!
Printable View
quick question: what is the proper way to supply command line parameters (ie. -b, -verbose, etc) to the javac program? do they need to be comma delimited? An example would be appreciated! Thank you!
Just pull up DOS and find out.:p I dont think that commas are
needed for multiple parameters.
at the command prompt C:\Windows> dir/w/p
is the same as dir /w /p so i dont think commas are needed.
I think you need to separate them with spaces. Never tried with slashes or dashes.Quote:
Originally posted by printf
quick question: what is the proper way to supply command line parameters (ie. -b, -verbose, etc) to the javac program? do they need to be comma delimited? An example would be appreciated! Thank you!
For e.g.
C:\>java MyJava Param1 Param2 Param3
.