Re: Reading command line parameters in gcj compiled exe
Andrew Haley <[email protected]>
| Newsgroups | gmane.comp.gcc.java.devel |
|---|---|
| Message-ID | <[email protected]> |
Jary Grove wrote: > I have natively compiled an application using gcj compiler, how can I pass/read the command line parameters in the main java class? > > For example my command line with parameters is tools.exe param1 param2 It's the same as usual; you have a method in your main class that takes the args: public static void main(String[] args) Andrew.