i want remove duplicate values from the excel sheet in java
I have an excel sh开发者_Go百科eet where I have duplicate values for many rows. How can I make it have unique values? I'm looking for some code which will remove duplicates from this excel sheet and store it back in the same file.
If you want to play around with Excel Spreadsheets you need a Java library like Apache POI or docx4j. I'm afraid I do not have any code samples for you but look at the project web sites.
You could also look into converting the spreadsheet to CSV format and then parse that to remove duplicates etc.
精彩评论