Go Back   Velocity Reviews > Newsgroups > Java
User Name
Password
Register FAQ Members List Calendar Search Today's Posts Mark Forums Read

Reply

Java - Eclipse (How to add file to Project?)

 
Thread Tools Search this Thread
Old 05-08-2006, 07:17 PM   #1
Default Eclipse (How to add file to Project?)


Using Eclipse, how do you get an existing java file to become part of
the project, so that other java files can use it (equivalent to
#include in C)? This seems like it should be easier than it is...

Thanks!



Duke McPherson
  Reply With Quote
Old 05-08-2006, 07:33 PM   #2
Larry
 
Posts: n/a
Default Re: Eclipse (How to add file to Project?)

Duke McPherson wrote:
> Using Eclipse, how do you get an existing java file to become part of
> the project, so that other java files can use it (equivalent to
> #include in C)? This seems like it should be easier than it is...
>
> Thanks!


If it is a JAR file you want to add, goto Projects -> Properties ->
Java Build Path and select "Add External JARs".

  Reply With Quote
Old 05-08-2006, 07:41 PM   #3
IchBin
 
Posts: n/a
Default Re: Eclipse (How to add file to Project?)

Duke McPherson wrote:
> Using Eclipse, how do you get an existing java file to become part of
> the project, so that other java files can use it (equivalent to
> #include in C)? This seems like it should be easier than it is...
>
> Thanks!
>

You did not specify if this is a java source and or class file. There
are at least three two ways to do what you want to do.

First
- put your target file into a jar file.
- Right click on your Eclipse project and select "Properties"
- Select "Java Build Path"
- Select "Add External Jar" and add that jar file you created
- Your project now has access.

Second
- Select main menu Windows\Preferences\Java\Build Path\Classpath Variables
- Add a path to your external code
- then you can add to your projects

Third
- Create a project in Eclipse for you external code.
- House it here
- Any other project that wants to reference this code the do the
following:
- Right click on your Eclipse project sand select "Properties"
- Select Project references
- Select the project you just created do that


Thanks in Advance...
IchBin, Pocono Lake, Pa, USA
http://weconsultants.servebeer.com/JHackerAppManager
__________________________________________________ ________________________

'If there is one, Knowledge is the "Fountain of Youth"'
-William E. Taylor, Regular Guy (1952-)
  Reply With Quote
Old 05-08-2006, 07:48 PM   #4
Oliver Wong
 
Posts: n/a
Default Re: Eclipse (How to add file to Project?)


"Duke McPherson" <> wrote in message
news: oups.com...
> Using Eclipse, how do you get an existing java file to become part of
> the project, so that other java files can use it (equivalent to
> #include in C)? This seems like it should be easier than it is...


Two others have given you some answers. Note that "#INCLUDE" in C is a
preprocessor directive, and is part of the preprocessor language. It's
independent of any IDE. That is, the #INCLUDE directive should function the
same way whether you're using Notepad, Emacs, vi, or anything else.

The way you've phrased your question makes it sound like you're asking
about how to do something specifically within Eclipse, which is why the
others have given the answers they did. If they answered the "wrong"
question, you should probably clarify this inconsistency above.

- Oliver

  Reply With Quote
Old 05-08-2006, 11:28 PM   #5
Duke McPherson
 
Posts: n/a
Default Re: Eclipse (How to add file to Project?)


IchBin wrote:
> You did not specify if this is a java source and or class file. There
> are at least three two ways to do what you want to do.


Java source file. I already have my Eclipse project. I just want
other .java files to be part of the project.

Thanks for the help!

  Reply With Quote
Old 05-08-2006, 11:37 PM   #6
James McGill
 
Posts: n/a
Default Re: Eclipse (How to add file to Project?)

On Mon, 2006-05-08 at 16:28 -0700, Duke McPherson wrote:

> Java source file. I already have my Eclipse project. I just want
> other .java files to be part of the project.



Put them in the correct dir under your project, and hit File->refresh in
Eclipse.

  Reply With Quote
Old 05-08-2006, 11:51 PM   #7
IchBin
 
Posts: n/a
Default Re: Eclipse (How to add file to Project?)

Duke McPherson wrote:
> IchBin wrote:
>> You did not specify if this is a java source and or class file. There
>> are at least three two ways to do what you want to do.

>
> Java source file. I already have my Eclipse project. I just want
> other .java files to be part of the project.
>
> Thanks for the help!
>

OK.. Just select you project or package you want load then into:

- right click and the select "Import"
- Select file system
- Browse to the when the programs are then select the ones you want
- Then "finish"


Thanks in Advance...
IchBin, Pocono Lake, Pa, USA
http://weconsultants.servebeer.com/JHackerAppManager
__________________________________________________ ________________________

'If there is one, Knowledge is the "Fountain of Youth"'
-William E. Taylor, Regular Guy (1952-)
  Reply With Quote
Old 05-09-2006, 01:03 AM   #8
Duke McPherson
 
Posts: n/a
Default Re: Eclipse (How to add file to Project?)

Thanks you guys, that worked. ; )

  Reply With Quote
Old 05-09-2006, 01:19 AM   #9
Alex
 
Posts: n/a
Default Re: Eclipse (How to add file to Project?)

Easiest way is drag/drop java file from your windows folder to folder
inside Eclipse (not Windows! Just in the Eclipse!).

  Reply With Quote
Reply


Thread Tools Search this Thread
Search this Thread:

Advanced Search

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

vB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Forum Jump