how do i import multimap for java?
问题 This is kind of stupid but how do I install MultiMap? I need a way to store multiple values to keys and my map implementation isn't working 回答1: That class, MultiMap , is not part of the Java standard library. It is part of Apache Commons, a separate set of utility classes many Java developers find useful. An alternate Multimap implementation (which I would recommend) is available in Guava, Google's utility library. In either case, in order to use these classes, you need to download the jar