我正在尝试使用一些谷歌文档功能,我决定做他们在这里提供的基本教程
我按照他们对 T 的说明进行操作,但在尝试运行时出现以下错误:
Exception in thread "main" java.lang.NoClassDefFoundError: com/google/common/collect/Maps
at com.google.gdata.wireformats.AltRegistry.<init>(AltRegistry.java:118)
at com.google.gdata.wireformats.AltRegistry.<init>(AltRegistry.java:100)
at com.google.gdata.client.Service.<clinit>(Service.java:555)
at technical.services.getDocumentList.main(getDocumentList.java:15)
Caused by: java.lang.ClassNotFoundException: com.google.common.collect.Maps
at java.net.URLClassLoader$1.run(URLClassLoader.java:217)
at java.security.AccessController.doPrivileged(Native Method)
at java.net.URLClassLoader.findClass(URLClassLoader.java:205)
at java.lang.ClassLoader.loadClass(ClassLoader.java:321)
at sun.misc.Launcher$AppClassLoader.loadClass(Launcher.java:294)
at java.lang.ClassLoader.loadClass(ClassLoader.java:266)
... 4 more
我仔细检查了构建路径中所需的所有依赖项,并且我知道它们在我的项目中被识别,因为当我从引用的 API 实例化对象时 IDE 没有抱怨。
任何帮助,将不胜感激。