We don’t allow questions seeking recommendations for books, tools, software libraries, and more. You can edit the question so it can be answered with facts and citations.
Closed 5 years ago.
Improve this qu开发者_Go百科estionIs there a website that I can put in two pieces of Java codes and see which lines are missing from one another?
What you want is a 'diff' tool.
One example: http://www.quickdiff.com/
If you are in a *NIX platform, the diff
program should be already available to you.
Just do:
diff file1 file2
and it should output the difference between the two files
Try http://www.quickdiff.com/.
I don't know how it works but appears to be nice online tool.
Maybe try Line Diff. it takes two code/text snippets generates a diff and renders is just like github.
精彩评论