Examples of ZingSongList


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

  public List<? extends ISong> getAlbum(String id) throws IOException {
    InputStream in = getInputStream(String.format(URL_SONG_OF_ALBUM, -1, id, 0));
    String response = Utils.streamToString(in);
    System.out.println(response);
    ZingSongList result = gson.fromJson(response, ZingSongList.class);
    return result.getSongs();
  }
View Full Code Here

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

 
  public List<? extends ISong> searchSong(String value, int page, String filter) throws UnsupportedEncodingException, IOException{
    value = URLEncoder.encode(value, "UTF-8");
    InputStream in = getInputStream(String.format(URL_SEARCH_SONG, numberResult, (page - 1) * numberResult, value, "hot"));
    String response = Utils.streamToString(in);
    ZingSongList result = gson.fromJson(response, ZingSongList.class);
    return result.getSongs();
  }
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.