【Java】Exception in thread main java.lang.IllegalStateException: Duplicate key

本文主要是介绍【Java】Exception in thread main java.lang.IllegalStateException: Duplicate key,希望对大家解决编程问题提供一定的参考价值,需要的开发者们随着小编来一起学习吧!

java8 stream 的toMap方法,如果key有重复的就会跑出上面的异常,比如:

        List<Integer> list = new ArrayList<>();list.add(1);list.add(2);list.add(1);System.out.println(list.stream().collect(Collectors.toMap(e->e, e->"hello")));

Exception in thread "main" java.lang.IllegalStateException: Duplicate key 1
    at java.util.stream.Collectors.lambda$throwingMerger$0(Collectors.java:133)
    at java.util.HashMap.merge(HashMap.java:1254)
    at java.util.stream.Collectors.lambda$toMap$58(Collectors.java:1320)
    at java.util.stream.ReduceOps$3ReducingSink.accept(ReduceOps.java:169)
    at java.util.ArrayList$ArrayListSpliterator.forEachRemaining(ArrayList.java:1382)
    at java.util.stream.AbstractPipeline.copyInto(AbstractPipeline.java:481)
    at java.util.stream.AbstractPipeline.wrapAndCopyInto(AbstractPipeline.java:471)
    at java.util.stream.ReduceOps$ReduceOp.evaluateSequential(ReduceOps.java:708)
    at java.util.stream.AbstractPipeline.evaluate(AbstractPipeline.java:234)
    at java.util.stream.ReferencePipeline.collect(ReferencePipeline.java:499)
    at com.liyao.AAA.main(AAA.java:32)

解决办法是:使用重载方法,多传入一个merge function来处理冲突

        List<Integer> list = new ArrayList<>();list.add(1);list.add(2);list.add(1);
//        System.out.println(list.stream().collect(Collectors.toMap(e->e, e->"hello")));System.out.println(list.stream().collect(Collectors.toMap(e->e, e->"1", (k,v)->k + "world")));
 /*** Returns a {@code Collector} that accumulates elements into a* {@code Map} whose keys and values are the result of applying the provided* mapping functions to the input elements.** <p>If the mapped* keys contains duplicates (according to {@link Object#equals(Object)}),* the value mapping function is applied to each equal element, and the* results are merged using the provided merging function.** @apiNote* There are multiple ways to deal with collisions between multiple elements* mapping to the same key.  The other forms of {@code toMap} simply use* a merge function that throws unconditionally, but you can easily write* more flexible merge policies.  For example, if you have a stream* of {@code Person}, and you want to produce a "phone book" mapping name to* address, but it is possible that two persons have the same name, you can* do as follows to gracefully deals with these collisions, and produce a* {@code Map} mapping names to a concatenated list of addresses:* <pre>{@code*     Map<String, String> phoneBook*         people.stream().collect(toMap(Person::getName,*                                       Person::getAddress,*                                       (s, a) -> s + ", " + a));* }</pre>** @implNote* The returned {@code Collector} is not concurrent.  For parallel stream* pipelines, the {@code combiner} function operates by merging the keys* from one map into another, which can be an expensive operation.  If it is* not required that results are merged into the {@code Map} in encounter* order, using {@link #toConcurrentMap(Function, Function, BinaryOperator)}* may offer better parallel performance.** @param <T> the type of the input elements* @param <K> the output type of the key mapping function* @param <U> the output type of the value mapping function* @param keyMapper a mapping function to produce keys* @param valueMapper a mapping function to produce values* @param mergeFunction a merge function, used to resolve collisions between*                      values associated with the same key, as supplied*                      to {@link Map#merge(Object, Object, BiFunction)}* @return a {@code Collector} which collects elements into a {@code Map}* whose keys are the result of applying a key mapping function to the input* elements, and whose values are the result of applying a value mapping* function to all input elements equal to the key and combining them* using the merge function** @see #toMap(Function, Function)* @see #toMap(Function, Function, BinaryOperator, Supplier)* @see #toConcurrentMap(Function, Function, BinaryOperator)*/public static <T, K, U>Collector<T, ?, Map<K,U>> toMap(Function<? super T, ? extends K> keyMapper,Function<? super T, ? extends U> valueMapper,BinaryOperator<U> mergeFunction) {return toMap(keyMapper, valueMapper, mergeFunction, HashMap::new);}

 

这篇关于【Java】Exception in thread main java.lang.IllegalStateException: Duplicate key的文章就介绍到这儿,希望我们推荐的文章对编程师们有所帮助!



http://www.chinasem.cn/article/999553

相关文章

Java实现字节字符转bcd编码

《Java实现字节字符转bcd编码》BCD是一种将十进制数字编码为二进制的表示方式,常用于数字显示和存储,本文将介绍如何在Java中实现字节字符转BCD码的过程,需要的小伙伴可以了解下... 目录前言BCD码是什么Java实现字节转bcd编码方法补充总结前言BCD码(Binary-Coded Decima

SpringBoot全局域名替换的实现

《SpringBoot全局域名替换的实现》本文主要介绍了SpringBoot全局域名替换的实现,文中通过示例代码介绍的非常详细,对大家的学习或者工作具有一定的参考学习价值,需要的朋友们下面随着小编来一... 目录 项目结构⚙️ 配置文件application.yml️ 配置类AppProperties.Ja

Java使用Javassist动态生成HelloWorld类

《Java使用Javassist动态生成HelloWorld类》Javassist是一个非常强大的字节码操作和定义库,它允许开发者在运行时创建新的类或者修改现有的类,本文将简单介绍如何使用Javass... 目录1. Javassist简介2. 环境准备3. 动态生成HelloWorld类3.1 创建CtC

JavaScript中的高级调试方法全攻略指南

《JavaScript中的高级调试方法全攻略指南》什么是高级JavaScript调试技巧,它比console.log有何优势,如何使用断点调试定位问题,通过本文,我们将深入解答这些问题,带您从理论到实... 目录观点与案例结合观点1观点2观点3观点4观点5高级调试技巧详解实战案例断点调试:定位变量错误性能分

Java实现将HTML文件与字符串转换为图片

《Java实现将HTML文件与字符串转换为图片》在Java开发中,我们经常会遇到将HTML内容转换为图片的需求,本文小编就来和大家详细讲讲如何使用FreeSpire.DocforJava库来实现这一功... 目录前言核心实现:html 转图片完整代码场景 1:转换本地 HTML 文件为图片场景 2:转换 H

Java使用jar命令配置服务器端口的完整指南

《Java使用jar命令配置服务器端口的完整指南》本文将详细介绍如何使用java-jar命令启动应用,并重点讲解如何配置服务器端口,同时提供一个实用的Web工具来简化这一过程,希望对大家有所帮助... 目录1. Java Jar文件简介1.1 什么是Jar文件1.2 创建可执行Jar文件2. 使用java

SpringBoot实现不同接口指定上传文件大小的具体步骤

《SpringBoot实现不同接口指定上传文件大小的具体步骤》:本文主要介绍在SpringBoot中通过自定义注解、AOP拦截和配置文件实现不同接口上传文件大小限制的方法,强调需设置全局阈值远大于... 目录一  springboot实现不同接口指定文件大小1.1 思路说明1.2 工程启动说明二 具体实施2

Java实现在Word文档中添加文本水印和图片水印的操作指南

《Java实现在Word文档中添加文本水印和图片水印的操作指南》在当今数字时代,文档的自动化处理与安全防护变得尤为重要,无论是为了保护版权、推广品牌,还是为了在文档中加入特定的标识,为Word文档添加... 目录引言Spire.Doc for Java:高效Word文档处理的利器代码实战:使用Java为Wo

SpringBoot日志级别与日志分组详解

《SpringBoot日志级别与日志分组详解》文章介绍了日志级别(ALL至OFF)及其作用,说明SpringBoot默认日志级别为INFO,可通过application.properties调整全局或... 目录日志级别1、级别内容2、调整日志级别调整默认日志级别调整指定类的日志级别项目开发过程中,利用日志

Java中的抽象类与abstract 关键字使用详解

《Java中的抽象类与abstract关键字使用详解》:本文主要介绍Java中的抽象类与abstract关键字使用详解,本文通过实例代码给大家介绍的非常详细,感兴趣的朋友跟随小编一起看看吧... 目录一、抽象类的概念二、使用 abstract2.1 修饰类 => 抽象类2.2 修饰方法 => 抽象方法,没有