YouTube Java API 问题

发布于 2024-09-15 00:48:41 字数 928 浏览 3 评论 0原文

我正在尝试使用 YouTube Java GData 库/API 获取某个用户的视频列表。

但是,当我尝试使用 YouTubeService service = new YouTubeService("Cyphon-MyCampusPulse-1", YOUTUBE_API_KEY); 创建服务时,出现以下运行时异常:

Exception in thread "main" java.lang.NoClassDefFoundError: javax/mail/MessagingException
at scrapers.YouTubePulseScraper.<init>(YouTubePulseScraper.java:37)
at scrapers.YouTubePulseScraper.main(YouTubePulseScraper.java:153)
Caused by: java.lang.ClassNotFoundException: javax.mail.MessagingException
at java.net.URLClassLoader$1.run(URLClassLoader.java:202)
at java.security.AccessController.doPrivileged(Native Method)
at java.net.URLClassLoader.findClass(URLClassLoader.java:190)
at java.lang.ClassLoader.loadClass(ClassLoader.java:307)
at sun.misc.Launcher$AppClassLoader.loadClass(Launcher.java:301)
at java.lang.ClassLoader.loadClass(ClassLoader.java:248)
... 2 more

我不确定如何例外与我正在做的事情有关。任何提示表示赞赏。

I'm trying to get a list of videos by a certain user using the YouTube Java GData library/API.

However, when I try to create a service by using YouTubeService service = new YouTubeService("Cyphon-MyCampusPulse-1", YOUTUBE_API_KEY);, I get the following runtime exception:

Exception in thread "main" java.lang.NoClassDefFoundError: javax/mail/MessagingException
at scrapers.YouTubePulseScraper.<init>(YouTubePulseScraper.java:37)
at scrapers.YouTubePulseScraper.main(YouTubePulseScraper.java:153)
Caused by: java.lang.ClassNotFoundException: javax.mail.MessagingException
at java.net.URLClassLoader$1.run(URLClassLoader.java:202)
at java.security.AccessController.doPrivileged(Native Method)
at java.net.URLClassLoader.findClass(URLClassLoader.java:190)
at java.lang.ClassLoader.loadClass(ClassLoader.java:307)
at sun.misc.Launcher$AppClassLoader.loadClass(Launcher.java:301)
at java.lang.ClassLoader.loadClass(ClassLoader.java:248)
... 2 more

I'm not sure how the exception relates to what I'm doing. Any hints are appreciated.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

往昔成烟 2024-09-22 00:48:41

您需要将 JavaMail jar 添加到类路径中,其中包含 javax.mail.MessagingException。您可以在这里获取它: http://www.oracle.com/technetwork/java /index-138643.html

编辑:
从文档中摘录:

GData Java 客户端库具有
遵循外部依赖关系。这
以下部分将描述如何
将这些依赖项安装到您的
最喜欢的操作系统(或操作系统
你在工作中遇到的困难)。

  • JDK(Java 开发工具包)版本 1.5+
  • Apache Ant 版本 1.7+
  • Sun JavaMail API 1.4+ 中的 mail.jar
  • Sun 的 JavaBeansActivationFramewrok 中的

  • activation.jar。这是
    仅媒体特定 API 需要
    包括文档列表数据API,
    Picasa 网络相册 API 和 YouTube 数据
    API。
  • Sun Servlet API 版本 2.3+ 中的 servlet.jar。仅当以下情况时才需要此操作:
    执行代码示例
    'sample.authsub' 或
    “sample.gbase.recipe”包。

一些 .jar 依赖项是
仅需要特定样品,
但为了避免构建错误,最好
只是为了得到一切。选择您的
选择的操作系统
继续:
Windows
Mac 操作系统
X
,
或者
Linux

我添加了这一点,因为如果您缺少一个依赖项,您可能会缺少其他依赖项,因此您应该仔细检查是否拥有所有内容。

You need to add the JavaMail jar to your classpath, which contains javax.mail.MessagingException. You can get it here: http://www.oracle.com/technetwork/java/index-138643.html

Edit:
Extracted from the documentation:

The GData Java Client Library has the
following external dependencies. The
following sections will describe how
to install these dependencies on your
favorite operating system (or the OS
that you're stuck with at work).

  • JDK (Java Development Kit) version 1.5+
  • Apache Ant version 1.7+
  • mail.jar in Sun's JavaMail API 1.4+
  • activation.jar in Sun's JavaBeansActivationFramewrok. This is
    only required for media specific APIs
    including Document List Data API,
    Picasa Web Album API, and YouTube Data
    API.
  • servlet.jar in Sun's Servlet API version 2.3+. This is required only if
    executing code samples in
    'sample.authsub' or
    'sample.gbase.recipe' packages.

A few of the .jar dependencies are
only required for specific samples,
but to avoid build errors, it's best
just to get everything. Choose your
operating system of choice to
continue:
Windows,
Mac OS
X
,
or
Linux.

I've added this since if you're missing one dependency you might be missing others, so you should double check you have everything.

小猫一只 2024-09-22 00:48:41

您需要 Java Mail,可从 Maven 存储库

<dependency>
  <groupId>javax.mail</groupId>
  <artifactId>mail</artifactId>
  <version>1.4.5</version>
</dependency>

You need Java Mail, which is available from Maven Repository:

<dependency>
  <groupId>javax.mail</groupId>
  <artifactId>mail</artifactId>
  <version>1.4.5</version>
</dependency>
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文