|
-
Sep 21st, 2001, 09:07 AM
#1
Thread Starter
Addicted Member
command line parameters
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!
-
Sep 21st, 2001, 10:44 AM
#2
Dazed Member
Just pull up DOS and find out. I dont think that commas are
needed for multiple parameters.
-
Sep 21st, 2001, 10:46 AM
#3
Dazed Member
at the command prompt C:\Windows> dir/w/p
is the same as dir /w /p so i dont think commas are needed.
-
Sep 22nd, 2001, 02:32 AM
#4
Well ...
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!
I think you need to separate them with spaces. Never tried with slashes or dashes.
For e.g.
C:\>java MyJava Param1 Param2 Param3
.
Posting Permissions
- You may not post new threads
- You may not post replies
- You may not post attachments
- You may not edit your posts
-
Forum Rules
|
Click Here to Expand Forum to Full Width
|