Package com.dongxuexidu.douban4j.service

Examples of com.dongxuexidu.douban4j.service.DoubanBookMovieMusicService


  }
 
  public static void testGetBookInfo () {
    try {
      long bookId = 2023013;
      DoubanBookMovieMusicService service = new DoubanBookMovieMusicService();
      DoubanSubjectObj book = service.getMusicInfoById(2272292);
      System.out.println("title : " + book.getTitle());
      for (DoubanTagObj tag : book.getTags()) {
        System.out.println("tag, count : " + tag.getCount() + " , name : " + tag.getName());
      }
      System.out.println("rating, min : " + book.getRating().getMin() + ", max : " + book.getRating().getMax() + " , value : " + book.getRating().getValue() + " , count : " + book.getRating().getNumberOfRaters() + " , avg : " + book.getRating().getAverage());
View Full Code Here

TOP

Related Classes of com.dongxuexidu.douban4j.service.DoubanBookMovieMusicService

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.