Guava重复键异常IllegalArgumentException

时间:2013-03-18 14:58:52

标签: java guava

这是一个快速剪辑。

Map<String, String> map = new HashMap<String, String>();
map.put("1", "1");
map.put("2", "1");          
Ordering<String> valueComparator = Ordering.from(String.CASE_INSENSITIVE_ORDER).onResultOf(Functions.forMap(map));  
Map<String, String> sortedMap = ImmutableSortedMap.copyOf(map, valueComparator);

当我运行它时,我得到了这个例外。

java.lang.IllegalArgumentException: Duplicate keys in mappings 2=1 and 1=1
    at com.google.common.collect.ImmutableSortedMap.validateEntries(ImmutableSortedMap.java:304)
    at com.google.common.collect.ImmutableSortedMap.copyOfInternal(ImmutableSortedMap.java:281)
    at com.google.common.collect.ImmutableSortedMap.copyOf(ImmutableSortedMap.java:220)
    at com.dbs.datasource.TestBeans.test(TestBeans.java:90)
    at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
    at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39)
    at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
    at java.lang.reflect.Method.invoke(Method.java:597)
    at junit.framework.TestCase.runTest(TestCase.java:168)
    at junit.framework.TestCase.runBare(TestCase.java:134)
    at org.springframework.test.ConditionalTestCase.runBare(ConditionalTestCase.java:76)
    at junit.framework.TestResult$1.protect(TestResult.java:110)
    at junit.framework.TestResult.runProtected(TestResult.java:128)
    at junit.framework.TestResult.run(TestResult.java:113)
    at junit.framework.TestCase.run(TestCase.java:124)
    at junit.framework.TestSuite.runTest(TestSuite.java:243)
    at junit.framework.TestSuite.run(TestSuite.java:238)
    at org.junit.internal.runners.JUnit38ClassRunner.run(JUnit38ClassRunner.java:83)
    at org.eclipse.jdt.internal.junit4.runner.JUnit4TestReference.run(JUnit4TestReference.java:50)
    at org.eclipse.jdt.internal.junit.runner.TestExecution.run(TestExecution.java:38)
    at org.eclipse.jdt.internal.junit.runner.RemoteTestRunner.runTests(RemoteTestRunner.java:467)
    at org.eclipse.jdt.internal.junit.runner.RemoteTestRunner.runTests(RemoteTestRunner.java:683)
    at org.eclipse.jdt.internal.junit.runner.RemoteTestRunner.run(RemoteTestRunner.java:390)
    at org.eclipse.jdt.internal.junit.runner.RemoteTestRunner.main(RemoteTestRunner.java:197)

看起来它在某处交换密钥和值。使用guava-14.0-rc1.jar

1 个答案:

答案 0 :(得分:11)

它正在按照您的要求进行操作 - 按照与键相关联的值对条目进行排序。我假设你已经知道那个部分,因为你已经调用了变量valueComparator

因此,根据您正在使用的比较器,您的两个键是相同的 - 因此它会抛出记录的异常:

  

IllegalArgumentException - 如果任何两个键根据比较器相等

也许您想按价值排序,然后按键排序,以提供唯一性?

Ordering<String> valueThenKeyComparator = 
    Ordering.from(String.CASE_INSENSITIVE_ORDER)
            .onResultOf(Functions.forMap(map))
            .compound(Ordering.<String> natural());