vote up 0 vote down star

I want to a project build path (default is src...). Can I do it using some java API?

flag

14% accept rate
1  
In what context? When the application that was built is run? While you are building, from an ant task? It's not clear what you are trying to accomplish. – djna Aug 11 at 8:37

4 Answers

vote up 2 vote down

The question poster is writing an Eclipse plugin.

You can find the JDT API in the Eclipse help. You should be able to get the information you want from IJavaProject. See this tutorial for one example of how to get this.

link|flag
vote up 0 vote down

The project deault path is just a common used standard, most IDE's default to it but there > are no Java API methods you can use.

+1

The project path is a development convention, but the java application built is independant from this development path.

Most Java IDE allow you to change this path.

In Eclipse for example, this path can be changed with : Right clic on project folder > Properties > Java build path

If you need this path in external programs for build, Eclipse has internal variables that can be used (for Ant, Maven, etc.). When configuring an "external tool", you can for example use {$project_loc}. This will be dynamically replaced by the project path.

link|flag
I need it inside an eclipse plugin – Ido Aug 11 at 10:19
vote up 1 vote down

There is a set of Ant tasks for this purpose. You could, in theory, use the Ant tasks as a Java API, albeit a rather clumsy one (unless you're actually writing in Ant, that is)

link|flag
We use them here - a bit rough, but you get the job done. – Thorbjørn Ravn Andersen Aug 11 at 9:19
vote up 0 vote down

The project default path is just a common used standard, most IDE's default to it but there are no Java API methods you can use.

link|flag
Hey, it's one of those peculiar people who write Java as an acronym :) – skaffman Aug 11 at 8:51
Just Another Vague Acronym? – Robert Munteanu Aug 11 at 8:58
in eclipse plugin – Ido Aug 11 at 9:00

Your Answer

Get an OpenID
or

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