tags:

views:

50

answers:

1

Hello,

when I change my foo.java file in Eclipse there are no changes in the foo.class inside the bin folder.

I think there must be a way that Eclipse change this automatically when altering an foo.java file?

I even can't make it manually.

Hope you can help me.

Thanks

+4  A: 
  • Make sure it's a java project
  • Make sure the java file is in a source folder (right click project, properties, build path)
  • Make sure you have automatic build turned on (Project menu -> Build automatically)
skaffman
Build Automatically is on, but when I make a new class no .class file is generated
qzar
It is likely built in the same directory as the source. Check the Default output folder on the Source tab of the Project's properties.
BillThor
I dont know exactly why, but now there is my .class file, it seems I have to investigate a bit Eclipse
qzar