.Class file not being created in eclipse

I know that this topic has been discussed but the solution presented didn't help me.

When I build my project nothing happens. I'm in navigation view and the .class file doesn't appear.

I am using external jar files but I have tried removing and re-added these numerous times. I'm really at my wits end. Anyone have and ideas?

Please forgive if I left anything out.

Thanks!

[411 byte] By [AgentNFa] at [2007-11-27 4:09:29]
# 1
BTW: I'm running 3.2Eclipsejdk1.5, And I do not receive and errors or warnings.. Any clues?
AgentNFa at 2007-7-12 9:14:56 > top of Java-index,Java Essentials,Java Programming...
# 2

do you know were the .class files are stored ?

1 - select your project

2 - mouse right click on the selected project

3 - properties (last item)

4 - select : java build path

4 - select :source, then look at the bottom => default output folder

java_2006a at 2007-7-12 9:14:56 > top of Java-index,Java Essentials,Java Programming...
# 3
Thanks you for the reply Java_2006, I checked the current output folder as listed on the source tab of the properties page. And when I build the project the .class file doesn't appear. I've looked at every possibility that I can think of and I'm puzzled. Any other suggestions ?
AgentNFa at 2007-7-12 9:14:56 > top of Java-index,Java Essentials,Java Programming...
# 4

I am not even sure what specifics to ask for here.

Do you not have a 'bin' or 'build' directory?

If you're running on a linux/unix, you could go to your workspace home and do:

find ./ | grep "\.class$"

As far as windows, search that directory (and subdirectory) for *.class

xiarcela at 2007-7-12 9:14:56 > top of Java-index,Java Essentials,Java Programming...
# 5

I may not be clear. I don't have a bin directory set up. I don't think the .class file is being created. I believe I have a problem with my classpath. Which has turned into another mess onto itself. I've added my external jar numerous times to no avail. I run the build and no .class file is created. I don't have any errors or warnings just nothing.......

Purhaps there is a compile listing somewhere in eclipse? Any type of tool to tell me what is wrong and why it won't compile.

Any thoughts?

AgentNFa at 2007-7-12 9:14:56 > top of Java-index,Java Essentials,Java Programming...
# 6

YOU DID NOT TELL US IF YOU FOLLOWED THE INSTRUCTIONS I PREVIOUSLY POSTED AND IF THERE IS REALLY AN OUTPUT FOLDER !!

Anyway, in your eclipse you may have filters activated.

(On the top right of your current (navigator, package explorer, ...) view menu)

You can also see whether the .class are created or not by doing this:

open explorer (windows) : start ->Desktop ->then go to your project location.

Then check if there is a bin or classes folder

java_2006a at 2007-7-12 9:14:56 > top of Java-index,Java Essentials,Java Programming...
# 7
Thank you for your help java_2006. I finally fiquered out my problem. It appears that one of my libraries was not being resolved. I'm sorry I was not clear in my posts.. I do appreciate all help I have been given. Regards ...
AgentNFa at 2007-7-12 9:14:56 > top of Java-index,Java Essentials,Java Programming...