• HashMap与LinkedHashMap的区别


    /**
             * remark:
             * HashMap与LinkedHashMap的区别
             * 这里必须使用LinkedHashMap:
             * 原因是LinkedHashMap保存了记录的插入顺序,
             * 在用Iterator遍历LinkedHashMap时,
             * 先得到的记录肯定是先插入的
             * 如果这里使用了HashMap则在resultList.addAll(summary.values())
             * 之后写到Excel中时顺序就会乱掉,
             * 而使用LinkedHashMap就会保持与reportTtlDataList循环记录的顺序一致
             */
            Map summary = new LinkedHashMap();
            summary.put("", new AribaReceiptInvoicePojo());
            AribaReceiptInvoicePojo titleChange = new AribaReceiptInvoicePojo();
            titleChange.setEcaGLAccount("差异汇总");
            titleChange.setEcaGRQty("Y");
            titleChange.setEcaActAmt("N");
            summary.put("title", titleChange);

            if(reportTtlDataList.size()>0){
                for (int i = 0; i < reportTtlDataList.size(); i++) {
                    Object[] obj = reportTtlDataList.get(i);
                    AribaReceiptInvoicePojo c = new AribaReceiptInvoicePojo();
                    c.setEcaGLAccount(obj[0].toString());
                    c.setEcaGRQty(obj[1].toString());
                    c.setEcaActAmt(obj[2].toString());
                    summary.put("c" + i, c);
                }
            }
            
            resultList.addAll(summary.values());
                
            return resultList;

  • 相关阅读:
    【Java】通用版URLConnection 带cookie下载PDF等资源文件
    【机器学习】粗糙集(Rough Set Approach)
    【机器学习】随机森林(Random Forest)
    【Python】微博自动抢红包
    sublime text3
    【神经网络】BP反向传播神经网络
    【MLP】多层感知机网络
    【Bayesian】贝叶斯决策方法(Bayesian Decision Method)
    postman常用功能汇总(基础必备)
    apache在linux下安装
  • 原文地址:https://www.cnblogs.com/anrangesi/p/9430796.html
Copyright © 2020-2023  润新知