Home  >  Article  >  Java  >  Compare large csv files #eg38

Compare large csv files #eg38

PHPz
PHPzOriginal
2024-09-10 16:31:02779browse

Here are two csv files (A and B) of same structure. Both use KEY_A, KEY_B and KEY_C as the primary key, and the two have different records.

Compare large csv files #eg38
Use Java to compare the two files in three ways and write the results respectively to new csv files. 1. Find records where primary keys are equal and values of the other fields are not equal, output their primary keys and then the other fields of A and the other fields in B. Below is the expected result:

Compare large csv files #eg38

  1. Find difference of A and B, that is, records existing in A but not existing in B, according to the primary key. Below is the expected result:

Compare large csv files #eg38

  1. Find difference of B and A according to the primary key. Below is the expected result:

Compare large csv files #eg38
Write SPL code to do the three comparisons. Below is for the 1st comparison:

Compare large csv files #eg38

Compare large csv files #eg38

Compare large csv files #eg38
T()function parses a csv file or write data to a csv file; @c option enables using the cursor to retrieve data from a file that cannot fit into the memory. sortx() function sorts data in a cursor. joinx()function performs a merge-join. merge() function merges records; @d option enables finding the diffefrence.

Read How to Call a SPL Script in Java to find how to integrate SPL into a Java application.

This is one of the problems on StackOverflow. You can click on it to see that the conventional solution is quite complicated, but the SPL approach is really simple and efficient.

SPL open source address

The above is the detailed content of Compare large csv files #eg38. For more information, please follow other related articles on the PHP Chinese website!

Statement:
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn