0
votes
1answer
60 views

Tool to compare HTML files and produce report in HTML or XML format

I want to provide a diff report for a non regression test. Regression test is to compare HTML files and generate report about which files are same and which are not same. I found one tool called ...
0
votes
0answers
30 views

Create diff patches in java

honorable developers! Could you say, is there exist a java-library, that allow to create diff-patches, preferably from jar-files and apply them to those jar-files? Maybe, somebody has an article ...
0
votes
2answers
125 views

Open Source Java Based Source Code Viewer

I am searching for a Java-based, open source diff viewer like http://www.redmine.org/projects/redmine/repository/annotate/branches/0.7-stable/config/database.yml.example Could you recommend (if any) ...
0
votes
1answer
83 views

Line diff with context in Java

Is there a Java lib for line-based diff between multi-line text chunks, that supports before/after context lines, similarly to diff -C in the Unix toolkit? For example, suppose the first chunk is a ...
1
vote
1answer
41 views

how to use org.eclipse.compare package?

I Found a library org.eclipse.compare. To which class or method i have to make call in that library? I am trying to find Diff. i want the modified,added,deleted line numbers. Please help me. ...
0
votes
1answer
136 views

Structural Diff of two java source files

Is there any way to find Structural diff of two java source files? I want to find structural difference of two java files, but i don't know how to start it. Is there any library in java for this ...
0
votes
2answers
175 views

Compare files in different folders

I'm using cvs (not by choice) and I refactored a project by creating a new package hierarchy in a v2 branch. Now i need to merge the changes that happened in branch v1 into branch v2. But because the ...
0
votes
3answers
606 views

How to diff-compare two xml files using java

I have two xml files that I want to compare: old.xml: <EMPLOYEES> <employee> <id>102</id> <name>Fran</name> <department> THIS IS COMPUTER ...
0
votes
0answers
261 views

SvnKit - svn diff on a single file. Working / merged copy V/s trunk revision

For retrieving diff on a single file, I am trying with below snippet of code: DAVRepositoryFactory.setup(); SVNRepository repository = SVNRepositoryFactory.create(SVNURL.parseURIEncoded(url)); ...
2
votes
1answer
201 views

SVNKit diff between dates

I am trying to use SVNKit to do a simple: svn diff url {date1}:{date2}. I cannot figure out how to use it on SVNKit. Does anyone know how to do this?
2
votes
1answer
81 views

Java - Files appear to be the same using java.Scanner, but are not evaluated as being “equal”

I have set up a JUnit test that is testing a method called copy(File src, File dest) that simply copies the contents of the src file to the dest file. I am using a Scanner to iterate over each file ...
0
votes
3answers
354 views

How to compare 2 xml strings?

I have a very specific requirment of comparing 2 xml strings in java. I have 2 xml strings. Original and modified. I need to compare the original xml string with the modified and find out what has ...
1
vote
4answers
445 views

Java object diff utility

I am looking for a generic utility in Java, that can help me create a diff report for two objects (of the same type). For instance, if my class structure is: class A { int p1; string p2; B b1; ...
1
vote
1answer
108 views

How to store delta of files across version of file?

I want to keep delta of files (MS Office/pdf/flash/images) when I upload my file to my local repo to store the files. You can imagine this in-house box.net or dropbox for my local usage. Are there ...
0
votes
0answers
85 views

Diff tool style UI control for Java

I would like to create a UI control in a Java Swing app that resembles most Diff tools, where basically there are two side-by-side views, and items in one can be transferred to another through two ...
1
vote
1answer
63 views

How to execute “svn diff” inside some custom Junit as part of Teamcity build

How to execute "svn diff" inside some custom Junit as part of Teamcity build. I would like to getwhat has been changed between current version & previous version of file. I know Teamcity when ...
5
votes
3answers
1k views

Java MongoDB Object Versioning

I need to do versioning on (simple) Java object graphs stored in a document-oriented database (MongoDB). For relational databases and Hibernate, I discovered Envers and am very amazed about the ...
2
votes
1answer
246 views

Retrieving differences between two files - Perforce Java API

I have just written a method for getting a List of differences between two IFileSpec objects, however, I do not know how to actually retrieve the differences from the IFileDiff object. Here is the ...
0
votes
1answer
505 views

What Delta Encoding/Compression Algorithm libraries are there for Java?

So I'm reading up on delta encoding, and I was looking around for some good examples of it. I think Google Chrome uses something like that for patch updates, rsync might, and the Wikipedia article ...
1
vote
1answer
169 views

Git Diff command in Java

For a project, I need to take a list of git commit Id's (A couple thousand), and compare them two at a time, saving specific information from the return into a file. The only issue I'm having is ...
2
votes
3answers
134 views

Is there a java library which can find the binary delta between 2 object instance's serialized state

I have uploaded a Java Game Server to github. I would like to provide the following functionality to users. When the game state changes, only transmit the delta to the connected game clients, thereby ...
2
votes
2answers
215 views

Eclipse Compare Editor: Ignoring “$Id:” Lines

When I do a comparison of two projects in Eclipse, I basically get a list of every single file in the project. This is usually because the two are either A.) from a different repo or B.) checked out a ...
3
votes
1answer
79 views

Something like a message digest but that progressively describes a file

I have a set of geographically remote nodes with heterogeneous operating systems which need to transfer files and updates around using a Java program I am writing. At present I need to send the entire ...
1
vote
1answer
334 views

Diff-Tool that can autoformat source code before comparing?

I've been using WinMerge, Eclipse's compare tool and Tortoise's to see my changes before committing. The problem is that when I edit a file that hasn't been edited by someone else since we last ...
0
votes
1answer
60 views

Not to show hidden symbols as distinction of two files in Eclipse compare editor

Since I've added code autoformat to Eclipse, it's very difficult to merge my local copies with svn files, because eclipse compare editor shows very many "changes". Several spaces or tabs or new lines ...
1
vote
2answers
404 views

How to convert diff output to HTML in Java?

Are there any libraries (available in Maven Central) that can convert diff output to HTML? Or, maybe even better, to compare two texts and produce an HTML output of their difference.
0
votes
2answers
60 views

How do I cache diffs in data for arbitrary time differences (java web service)

I have a Java Webserivce which querying a DB to return data to users. DB queries are expensive so I have Cron job which runs every 60 seconds to cache the current data in memcached. Data elements ...
10
votes
4answers
2k views

Is there a Java library that can “diff” two Objects?

Is there a Java utility library that is analogous to the Unix program diff, but for Objects? I'm looking for something that can compare two objects of the same type and generate a data structure that ...
2
votes
1answer
204 views

Is there a more flexible alternative to diff/patch?

I'm trying to maintain a set of patches, which needs to be applied to several versions/branches of the code. The current diff/patch method (and git cherry-picking) is not flexible enough, mainly due ...
0
votes
0answers
647 views

tree / diff-algorithm

I'm currently writing a diff-algorithm to detect inserts, deletes, updates and moves between two revisions of a tree whereas each node has a unique ID which doesn't change through the revisions. I'm ...
0
votes
2answers
125 views

Check physical existence of files referenced in DB table

We have one rather large table containing documents info together with filepaths pointing to files on file system. After couple of years we noticed that we have files on the disk which are not ...
5
votes
4answers
425 views

diff/patch for images

I'm writing a project where I need to transfer a set of similar images over the net. To speed things up, I thought about doing what most movie codecs do. having keyframes and then just send the ...
3
votes
2answers
532 views

How to diff XML on element-level, not attributes?

I need to perform a comparison between two XML documents. I've been looking at a lot of different xml-diffing tools typically mentioned here on Stack Overflow, but my needs are, of course, very ...
2
votes
2answers
864 views

diff_match_patch: Generating side-by-side view

I'm using google-diff-match-patch with my Java app to create a diff. I use the method diff_prettyHtml for generating HTML output of the diff. However, I would like to have two different outputs, so I ...
1
vote
2answers
925 views

Usage of a Diff library

I need a diff library for my project. This is exactly what i need: http://code.google.com/p/google-diff-match-patch/ But when i download the file it doesnt come with a jar file. There are source ...
2
votes
2answers
328 views

Detect percentage of difference between HTML pages

Suppose I have 2 HTML sources. I want to compare these and if they differ more than a given percentage value I want to do something with the new HTML. For example, if the 2 HTML pages differ 5% or ...
9
votes
4answers
673 views

diff tool that recognizes block movement

I'm searching for a diff tool that is able to compare 2 files and detect code block movement. I'm currently programming in Java using Netbeans. While using Subversion in combination with Netbeans is ...
5
votes
4answers
2k views

binary diff library for Java

There are several questions about text-diff libraries for Java on SO, but none about binary diff. So here I go: I'm looking for a binary diff library, implemented in Java. I found javaxdelta and GNU ...
0
votes
3answers
346 views

How to effectively monitor change on a remote location?

We have to monitor the change on a remote system file, that we acces throught FTP, SMB. We do not have any SSH access to the remote system / os. Our only view of the remote system is what FTP or Samba ...
1
vote
1answer
209 views

Advice converting recursive Diff Algorithm to an iterative one?

Greetings! I wrote a recursive diff algorithm from scratch. It finds the "best match" between two strings such that the differences are minimized, and prints out the two strings with any differences ...
0
votes
1answer
247 views

How to build SVN/Git like Diff in WebApp?

I have XMLs(or Objects) that represents data at some point in a business process. I would like to be able to see what has changed between step1 and step5(two versions of the same XML or Object). Id ...
6
votes
2answers
354 views

Is there a Diff library for java that supports Annotate/Blame?

I'm digging through Google's results for free (open source) Java diff libaries, and there seem quite a bunch of those (some of them even working with generic Objects and not only with Strings). ...
3
votes
4answers
963 views

How can I diff two different text files without considering line order?

I have two properties files that contain information. I would like to diff them to see if they are the same. However, in properties files, unless you specify an order to output they write to a file in ...
0
votes
1answer
182 views

Get list of new/changed java methods

I've reworded the question to make it more generic; the original wording is below. How would I get a list of the new/changed methods, either from two java source snapshots, or from a diff of them? ...
15
votes
7answers
11k views

Comparing two .jar files

How do I compare two .jar files? Both of them have compiled .class files. I want the difference in terms of method changes, etc.
0
votes
4answers
1k views

File Compare and Highlight - Java

I want to compare two text files and want to highlight the differences. Can any one of you help me in doing that thro Java program. Thanks in advance.
1
vote
1answer
377 views

How to apply .diff patch with Eclipse to HtmlUnit

I'm trying to patch HtmlUnit with the patches at the bottom of this page. I can see how to apply patches from Eclipse, but I can't figure out how to apply these particular patches. I had the JARs ...
4
votes
9answers
134 views

Is there a decent tool for comparing/diffing two Java packages?

I'm looking for a tool that will give me a high level view of which files are different between two fairly large Java packages. If I could then drill down into individual files then that would be ...
0
votes
1answer
446 views

Strange characters with diff-match-patch libraries

I'm using diff-match-patch ( http://code.google.com/p/google-diff-match-patch/ ) to make difference between two text. At the end of the diff, they return strange characters: for example à become ...
2
votes
2answers
1k views

diff implementation in Java

I'm looking for a diff implementation in Java. I've seen that Python has its own SequenceMatcher (with difflib), which is exactly what I need... in Java. Is there any portage? Or is there any other ...

1 2