Package com.dongxuexidu.douban4j.model.v2

Examples of com.dongxuexidu.douban4j.model.v2.DoubanCastObject


    return movie;
  }
 
  public DoubanSubjectListObj getMoviesTop250(int start, int count) throws DoubanException, IOException {
    String url = RequestUrls.DOUBAN_MOVIE_V2_PREFIX + "/" + "top250?count=" + count;
    DoubanSubjectListObj movie = this.client.getResponseInJson(url, null, DoubanSubjectListObj.class, false);
    return movie;
  }
View Full Code Here

TOP

Related Classes of com.dongxuexidu.douban4j.model.v2.DoubanCastObject

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.