gpt4 book ai didi

java - 由于与 guava 相关的问题,无法在 java 中运行 youtubedata api 2.0

转载 作者:行者123 更新时间:2023-11-30 04:29:40 24 4
gpt4 key购买 nike

我在类路径中使用了以下 jar,以便使用 YouTube API 检索我的订阅列表:

gdata-client-1.0.jargdata-core-1.0.jargdata-media-1.0.jargdata-youtube-2.0.jar Guava -14.0-rc1.jar邮件.jar

代码如下:

import com.google.gdata.client.*;
import com.google.gdata.client.youtube.*;
import com.google.gdata.data.*;
import com.google.gdata.data.geo.impl.*;
import com.google.gdata.data.media.*;
import com.google.gdata.data.media.mediarss.*;
import com.google.gdata.data.youtube.*;
import com.google.gdata.data.extensions.*;
import com.google.gdata.util.*;

import java.io.IOException;
import java.io.File;
import java.net.MalformedURLException;
import java.net.URL;

public class YouTubeExample {


public static void main (String args[]) throws MalformedURLException, IOException, ServiceException{
String developer_key = "CSCSCSCSCSCScSCXXXXX-XXXXX_-XXXX";
YouTubeService service = new YouTubeService(developer_key);

//Retrieving video subscriptions
String feedUrl =
"http://gdata.youtube.com/feeds/api/users/GoogleDevelopers/subscriptions";

SubscriptionFeed feed = service.getFeed(new URL(feedUrl), SubscriptionFeed.class);

for(SubscriptionEntry entry : feed.getEntries()) {
System.out.println("Title: " + entry.getTitle().getPlainText());
System.out.println("Feed Link: " + entry.getFeedUrl());
}

}

}

但是在运行这个时,我收到如下错误:

线程“main”中出现异常 java.lang.NoSuchMethodError: com.google.common.collect.ImmutableSet.of([Ljava/lang/Object;)Lcom/google/common/collect/ImmutableSet; 在 com.google.gdata.wireformats.AltFormat$Builder.setAcceptableTypes(AltFormat.java:399) 在 com.google.gdata.wireformats.AltFormat$Builder.setAcceptableXmlTypes(AltFormat.java:387) 在 com.google.gdata.wireformats.AltFormat.(AltFormat.java:49) 在 com.google.gdata.client.Service。(Service.java:535) 在 YouTubeExample.main(YouTubeExample.java:21)

如果我在类路径中将 guava-14.0-rc1.jar 替换为 guava-10.0.1.jar(根据一些建议为旧版本),我仍然会收到如下错误:

线程“main”中出现异常 java.lang.NoSuchMethodError: com.google.gdata.data.ExtensionProfile.declareAdditionalNamespace(Lcom/google/gdata/util/common/xml/XmlWriter$Namespace;)V 在 com.google.gdata.data.youtube.CommentEntry.declareExtensions(CommentEntry.java:92) 在 com.google.gdata.data.ExtensionProfile.addDeclarations(ExtensionProfile.java:71) 在 com.google.gdata.data.BaseFeed.declareExtensions(BaseFeed.java:229) 在 com.google.gdata.data.ExtensionProfile.addDeclarations(ExtensionProfile.java:71) 在 com.google.gdata.client.youtube.YouTubeService。(YouTubeService.java:140) 在 com.google.gdata.client.youtube.YouTubeService。(YouTubeService.java:103) 在 YouTubeExample.main(YouTubeExample.java:21)

我尝试过包含activation.jar、servlet-api.jar,但没有成功!我也尝试过旧版本,例如 guava 0.7 jar,但没有成功。请帮忙!

最佳答案

不要导入所有这些。

您的项目似乎同时依赖于最新和旧的 API。你不应该。所以只需检查一下 this page 到底是什么说。

使用 Maven 时,要运行您的代码,我只需要以下内容:

<dependencies>
<dependency>
<groupId>com.google.gdata</groupId>
<artifactId>core</artifactId>
<version>1.47.1</version>
</dependency>
</dependencies>

Maven 很有趣,因为我们可以看到所有隐藏的依赖项,并且我们可以手动管理它们,以便正确安装所有最新版本的库。

完整的树包括以下内容:

core: 1.47.1
guava: 13.0.1
google-oauth-client-jetty: 1.11.0-beta
google-oauth-client-java6: 1.11.0-beta
google-auth-client: 1.11.0-beta
google-http-client: 1.11.0-beta
jsr305: 1.3.9 (omitted for conflict with 1.3.7)
guava: 11.0.1 (omitted for conflict with 13.0.1)
httpclient: 4.0.3
httpcore: 4.0.1
commons-logging: 1.1.1
commons-codec: 1.3
xpp3: 1.1.4
jsr305: 1.3.9 (omitted for conflict with 1.3.7)
guava: 11.0.1 (omitted for conflict with 13.0.1)
jetty: 6.1.26
jetty-util: 6.1.26
servlet-api: 2.5-20081211
jsr305: 1.3.7
mail: 1.4
activation: 1.1

这棵树向我们表明,使用 guava 13.0.1 是安全的,并且您并不真正需要尝试包含的所有其他 API,因此只需忽略它们即可。

如果您不使用 Maven,只需使用此处的项目:https://code.google.com/p/gdata-java-client/downloads/list

关于java - 由于与 guava 相关的问题,无法在 java 中运行 youtubedata api 2.0,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/14974836/

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