I store Guava Library and a testing file Test.java in C:\Program Files\Java\jdk1.6.0_25\bin and execute following commands in command prompt:

When I remove the import commands from my code, program execute properly (last command). Can anybody help me where is the problem because it is showing errors with imports.
My code is following:
import com.google.common.collect.HashMultimap;
import com.google.common.collect.Multimap;
public class Test {
public static void main(String[] args) {
try {
String key = "hello";
Multimap myMap = HashMultimap.create();
myMap.put(key, 1);
myMap.put(key, 5000);
System.out.println(myMap.get(key));
}
catch (Exception e) {
System.out.println(e);
}
}
}

It looks like you’re missing a period in
guava-11.0.2.jar. Your console appears to indicate that you’re typingguava-11.0.2jar, without a period between the2and thejar.