Anzo31
Anzo31

Reputation: 241

what can I do to make display the bin folder on eclipse?

can anyone help me solve the issue that I have ? in fact when I create a project on eclipse, the bin folder doesn't display and I am able to create a javadoc for my project. I need help please.

Upvotes: 24

Views: 41582

Answers (4)

ezzadeen
ezzadeen

Reputation: 1063

If your Eclipse version doesn't allow you to show "Java Output Folders" as mentioned by nanda, then try the Navigator View (From the main menu: Window > Show View > Navigator). The Navigator View shows the bin folder.

Upvotes: 2

Eduardo Cuomo
Eduardo Cuomo

Reputation: 18937

To change this behaviour and hide the “.class” files you need to do the following.

  1. Find your class output folder in the “Project explorer” window. This is usually called “bin” or “target” for Maven projects

  2. Right-click this folder and click “Properties”

  3. Tick the “Derived” checkbox and click “OK”

“.class” files will now be hidden in future.

Source: http://ayubmalik.co.uk/2011/12/hide-class-files-when-opening-a-type-or-resource-in-eclipse-ide/

Upvotes: 4

nanda
nanda

Reputation: 24788

I don't know what the reason for your question but you can see the bin directory in Project Explorer (not Package Explorer). Here you click the triangle and select Customize View... and remove the click on Java output folders

alt text

Upvotes: 41

Tarski
Tarski

Reputation: 5500

Your question is a bit vague but try right clicking on the project and choosing build path, and see if the output directory for your java classes is set to bin. It may not appear in your unless you add some Java source code

Upvotes: -1

Related Questions