Добавление видео с YouTube в Jframe? API YouTube

Привет пользователям Stackru. Я пытаюсь добавить видео в свой JFrame, я использую API Google YouTube. Теперь я застрял на том, как на самом деле добавить запись видео в мою панель контента.

Мой код: (не похоже на правильный код....?)

/**
 * Youtube Video's
 */
private void create(String video_id) {
    try {
    YouTubeService service = new YouTubeService("app", "abcd");

    String videoEntryURL = "http://gdata.youtube.com/feeds/api/videos/"+video_id;

    VideoEntry videoEntry = service.getEntry(new URL(videoEntryURL), VideoEntry.class);

    getContentPane().add(videoEntryURL);

    System.out.println(videoEntry.getTitle().getPlainText());
    } catch (MalformedURLException e) {
        e.printStackTrace();
    } catch (IOException e) {
        e.printStackTrace();
    } catch (ServiceException e) {
        e.printStackTrace();
    }
}

& В моем void homeScreen метод у меня такой:

/**
         * Youtube Video 1
         */
        //YouTubeService service = new YouTubeService("xxx.apps.googleusercontent.com",  "AAA");
        create("EKyirtVHsK0");

Проблема: чем заменить video Entry в моем create(String video_id) метод.

этот:

getContentPane () добавить (videoEntry).

0 ответов

Другие вопросы по тегам