Package com.google.gdata.data.youtube

Examples of com.google.gdata.data.youtube.CommentFeed


    // get other tag.
    this.otherKeywords = JavaCacheHandle.getRandomKeywords();

    if (videoEntry.getComments() != null) {
      List<Text> listComment = new ArrayList<Text>();
      CommentFeed commentFeed = TubeService.service.getFeed(new URL(
          videoEntry.getComments().getFeedLink().getHref()),
          CommentFeed.class);
      for (CommentEntry cmtEntry : commentFeed.getEntries()) {
        StringBuilder content = new StringBuilder();
        content.append("<commentId>" + cmtEntry.getId()
            + "</commentId>\n");
        content.append("<content>" + cmtEntry.getPlainTextContent()
            + "</content>\n");
View Full Code Here

TOP

Related Classes of com.google.gdata.data.youtube.CommentFeed

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.