gpt4 book ai didi

java - containsKey 与网址不匹配

转载 作者:行者123 更新时间:2023-11-29 03:47:27 24 4
gpt4 key购买 nike

我正在尝试将超链接存储为 map 中的键,我正在使用 multimap

 private Map<String, List<String>> record=new HashMap<String, List<String>>();

我正在使用以下方法检查超链接是否已经存在于 map 中

 record.containsKey(url) 

但是即使 url 存在于 map 中,对于 map 中已经存在的相同 url,它也会返回 false。那么我该如何解决这个问题

我存储的链接是

   http://101.13.20.343/test/wav/uploads/372.wav

最佳答案

这对我有用:

public static void main(String[] args) {
Map<String, List<String>> record=new HashMap<String, List<String>>();
record.put("http://101.13.20.343/test/wav/uploads/372.wav", new ArrayList<String>());
System.out.println(record.containsKey("http://101.13.20.343/test/wav/uploads/372.wav"));
}

关于java - containsKey 与网址不匹配,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/10305163/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com