Examples of ZingAlbumList


Examples of huu.phong.musiconline.model.zing.ZingAlbumList

  public List<? extends IAlbum> searchAlbum(String value, int page, String filter) throws IOException{
    value = URLEncoder.encode(value, "UTF-8");
    InputStream in = getInputStream(String.format(URL_SEARCH_ALBUM, numberResult, (page - 1) * numberResult, value, "hot"));
    String response = Utils.streamToString(in);
    System.out.println(response);
    ZingAlbumList result = gson.fromJson(response, ZingAlbumList.class);
    return result.getAlbums();
  }
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. 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.