0
我試圖得到一些谷歌文檔的功能會和我決定做他們提供here構建問題與谷歌文檔的Java API
我跟着他們到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
我仔細檢查了,我有所有被要求在我的構建路徑依賴的,我知道他們是在我的項目識別,因爲IDE不抱怨,當我從引用的API實例化對象。
任何幫助,將不勝感激。