This is the mail archive of the
java@gcc.gnu.org
mailing list for the Java project.
Re: Reading command line parameters in gcj compiled exe
Thanks Andrew.
It worked!
Jary
---------------------------------------------------------------------------------------
Active Directory?Browser: http://www.ldapsoft.com/adtool.html
----- Original Message ----
> From: Andrew Haley <aph@redhat.com>
> To: Jary Grove <jarygrove@yahoo.com>
> Cc: java@gcc.gnu.org
> Sent: Friday, January 23, 2009 10:54:13 AM
> Subject: Re: Reading command line parameters in gcj compiled exe
>
> 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.