gpt4 book ai didi

java - 从 OMDb API 获取剧集信息

转载 作者:行者123 更新时间:2023-11-30 06:16:05 24 4
gpt4 key购买 nike

我在我的应用程序中使用了很棒的 OMDb API,我希望能够使用此 API 搜索剧集信息。

到目前为止,我已经能够搜索电影/剧集,但找不到搜索特定剧集的方法。 (我想我可以使用剧集的 IMDB id 来做到这一点,但发现我需要搜索 OMDb,我不知道如何搜索)

有谁知道执行此任务的方法吗?

最佳答案

OMDb API 支持剧集搜索 (as of 5/15/2015)。为了使用 Java 搜索节目的特定剧集,您需要执行如下操作(此处的关键参数是 episodeseason):

String url = "http://www.omdbapi.com/";
String charset = "UTF-8";
String title = "Game of Thrones";
String season = "5";
String episode "5";

String query = String.format("t=%s&season=%s&episode=%s",
URLEncoder.encode(title, charset),
URLEncoder.encode(season, charset),
URLEncoder.encode(episode, charset),);

URLConnection connection = new URL(url + "?" + query).openConnection();
connection.setRequestProperty("Accept-Charset", charset);
InputStream response = connection.getInputStream();
// Do some stuff with the data

请注意,此方法使用 Java 的 URLConnection 包。您可以阅读更多相关信息 here , 并阅读 super 棒的教程 here .

关于java - 从 OMDb API 获取剧集信息,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/27937942/

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