This is the mail archive of the java@gcc.gnu.org mailing list for the Java project.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]
Other format: [Raw text]

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.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]