栏目分类:
子分类:
返回
名师互学网用户登录
快速导航关闭
当前搜索
当前分类
子分类
实用工具
热门搜索
名师互学网 > IT > 软件开发 > 后端开发 > Java

Excel去除重复数据

Java 更新时间: 发布时间: IT归档 最新发布 模块sitemap 名妆网 法律咨询 聚返吧 英语巴士网 伯小乐 网商动力

Excel去除重复数据

【问题】

I have an excel file with following data (dummy)

I am reading this file and storing the result in a Set so that duplicates can be removed and I only get unique list. Below is the what I tried:

FileInputStream file = new FileInputStream(new File(“C:\Users\harshita.sethi\Desktop\ALLOT010T_Input_Keywords.xls”));

HSSFWorkbook w = new HSSFWorkbook(file);

HSSFSheet sheet = w.getSheetAt(0);

int totalrows = sheet.getLastRowNum();

System.out.println(sheet.getRow(0).getPhysicalNumberOfCells());

String[][] data = new String[totalrows+1][sheet.getRow(0).getPhysicalNumberOfCells()];

Set keySet = new HashSet<>();

for (int i = 0; i <= totalrows; i++) {

    for (int j = 0; j < sheet.getRow(0).getPhysicalNumberOfCells(); j++) {

        HSSFCell cell = sheet.getRow(i).getCell(j);

        // writing keywords from excel into a hashmap

        data[i][j]=cell.getRichStringCellValue().getString();

    }

    keySet.add(data[i]);

}

Iterator iterator = keySet.iterator();

System.out.println(“Output Set is as below”);

while(iterator.hasNext()){

    String[] next = iterator.next();

    System.out.println(next[0] + “t”+ next[1] +"t"+next[2]);

}

The output of this code is as shown below

Output Set is as below

d   b    c

e   b    c

a   b    c

d   b    c

d   b    c

g   b    c

e   b    c

f   b    c

d   b    c

The set didn’t remove the duplicate. What other approach can I used to eliminate these duplicates. Any column can have different or same value. So I cannot remove duplicates based on a particular column

I want the entire row to be unique.

PS: This data is just dummmy. In real scenario I have more columns and any column value can be different which will make the row unique.

【回答】

这是个典型的去重动作,用 SPL 比 Java 要简单得多。

A
1= file(“d:\data.xlsx”).importxls()
2= A1.group@1(#1,#2,#3)

这段代码可以方便地集成进 Java,参考【Java 如何调用 SPL 脚本​】

执行上述脚本语句即获取结果:

A1:读取 Excel 文件;

A2:获取数据集合并去掉重复数据;

转载请注明:文章转载自 www.mshxw.com
本文地址:https://www.mshxw.com/it/459156.html
我们一直用心在做
关于我们 文章归档 网站地图 联系我们

版权所有 (c)2021-2022 MSHXW.COM

ICP备案号:晋ICP备2021003244-6号