Package huu.phong.musiconline.model.zing

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


 
  public ZingAlbum getAlbumInfo(String id) throws IOException{
    InputStream in = getInputStream(String.format(URL_ALBUM_INFO, id));
    String response = Utils.streamToString(in);
    System.out.println(response);
    ZingAlbum album = gson.fromJson(response, ZingAlbum.class);
    return album;
  }
View Full Code Here

TOP

Related Classes of huu.phong.musiconline.model.zing.ZingAlbum

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.