Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

There is an old eclipse project, the code are not format well. I'd like to format all the java files according to the settings in my eclipse. I doesn't want to edit file one by one and "ctrl+shift+f", is there a grace solution to the problem? an eclipse plugin?

Thanks in advance.

share|improve this question

3 Answers

up vote 29 down vote accepted

Right click on the project root and select Source -> Format

Edit: Now that I tried this myself, it doesn't seem to work from the project root. Instead, you can select all your packages with by clicking on them while holding down CTRL, then select Source -> Format from the right-click -menu. Works with Source Folders also (no need to select the packages under them).

share|improve this answer
It works. Thanks a lot :) – sesamegu Feb 27 '11 at 15:06

This is the purpose of Source/Clean Up..., selecting the appropriate options.

share|improve this answer

package explorer -> right clicking on your projet -> source -> format

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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