I have created two java projects both have some common package structure and also same class. I want to compare these two projects and get each difference. Is there any software to get difference between two projects.

Thanks Deepak

link|improve this question

74% accept rate
feedback

closed as not constructive by casperOne Feb 21 at 13:25

This question is not a good fit to our Q&A format. We expect answers to generally involve facts, references, or specific expertise; this question will likely solicit opinion, debate, arguments, polling, or extended discussion. See the FAQ for guidance on how to improve it.

5 Answers

up vote 3 down vote accepted

For windows, the best choice is BeyondCompare. If you want it free - take WinMerge. Under Unix, the best choice is Meld which is written in python, thus being also the only cross-platform alternative of the three.

All these tools support 2-way folder comparison which is what you seem to need here.

link|improve this answer
I used free trial version of BeyondCompare. Its really a good tool. Thanks kostja – Sunil Kumar Sahoo May 18 '11 at 5:39
@Deepak you're welcome – kostja May 18 '11 at 6:02
feedback

There's BeyondCompare. It's not free, but it is very good

link|improve this answer
feedback

Have you ever used WinMerge? you can use it to compare two folders and it will show you the differences between them.

WinMerge

link|improve this answer
feedback

The interface is definitely dated, but I love xxdiff for showing complex diffs and merge conflicts. Superb tool.

If you'd like to know what the differences are going forward, you might want to place both versions under a version control system like git, which can make finding differences (and moving changed code) very easy. But I'd have to want to do the same task again tomorrow to go this extra step. :)

link|improve this answer
feedback

Another option is to use a source code control system like subversion or git or bazaar or mercurial.

link|improve this answer
feedback

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