Click here to Skip to main content
15,884,077 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
See more:
I am generating excel file from text file,now i want to compare 2 excel files based on their content and want to highlight the updated content by making colour changing of the rowetc. Can someone suggest some sort of idea how ths can be done???Anyhelp would be really appreciated..thanks in advance
Posted

1 solution

Probable Steps :
1. Read the text file
2. Read the old_excel file using POI api.
3. On the basis of text file create an new_excel instance using POI
4. before writing it i.e at the time of creation compare it with old_excel file
5. do the necessary update i.e. row color/column color change on the POI instance
6. finally write it.
 
Share this answer
 
Comments
TorstenH. 3-May-13 2:33am    
+5.

to add in: you'll fiond the POI API here: Apache POI API

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900