Examples of ZingLyric


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

  public List<String> getLyric(ISong song) throws IOException {
    InputStream in = getInputStream(String.format(URL_LYRIC, song.getId()));
    String response = Utils.streamToString(in);
    System.out.println(response);
    ZingLyric result = gson.fromJson(response, ZingLyric.class);
    return result.getLyric();
  }
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.