Is there any java program is available to arrange java program according to perfect indentation,syntax...? To make clear on my question (i.e) if a code snippet is like this...
Actual Code
if(true) { a=1; b=1; c=1; }
Expected result
if(true) {
a=1;
b=1:
c=1;
}
Expected result can be achieved using eclipse IDE. But i want to do that using java program since am having several programs like this....