I'm trying to run 'javac' tool on a compiled .class file in Eclipse. I open External Tools Configuration them fill the filds:

Location: C:\Program Files\Java\jdk1.6.0_25\bin\javac.exe

Working directory: ${workspace_loc:/Main/bin}

Arguments: ?

I want to ask you what must I write in the Arguments field, and am I fill*Location* and Working directory: fields right ?

link|improve this question

In two places in your question you're talking about javac, but elsewhere you're talking about javah. Please clarify. – Jon Skeet May 13 '11 at 5:58
2  
javac is used to produce a .class file, not to run on it!? – Arne May 13 '11 at 6:26
feedback

3 Answers

up vote 0 down vote accepted

Why do you want to run javac? Eclipse ships with an inbuilt compiler that can automatically compile the projects when you edit the files.

link|improve this answer
Because the two compilers don't always behave the same way. See stackoverflow.com/search?q=[eclipse]+javac for several examples :) – MatrixFrog Jun 23 '11 at 21:15
Don't worry. I can assure you that when these two behaviour differently, most of the cases, its a bug with Sun compiler. – Prakash G. R. Jun 26 '11 at 14:23
That's not terribly helpful though, even if it IS a Sun issue. Some CI build environments can't be changed to use Eclipse's compiler even if that was desirable. – StephMW Jul 12 '11 at 10:41
feedback

Creating a Java application launch configuration

Inside the Run Configuration ---> Main tab , you can specify the Main class to run

Inside the Run Configuration ---> Arguments tab , you can specify the arguments passed into the main class. Simply enter your input arguments here and each argument is separated by space (eg arg1 arg2 arg3 will pass these 3 arguments to your main class) . You can also parameterize the arguments by using eclipse predefined variables folder_prompt, file_prompt or string_prompt (You can use the "variables..." button inside the arguments tab to help you to configure them) . When you run the main class, Eclipse will then prompt the dialogs to let you enter the arguments

Inside the Run Configuration ---> JRE tab ,you can specify the JRE to execute the main class.

link|improve this answer
feedback

Use Ant.

Create an Ant buildfile that uses the javac task and run it using the eclipse Ant view.

Eclipse Ant Documentation

Ant Manual: Javac task

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.