Package huu.phong.musiconline.model

Examples of huu.phong.musiconline.model.ChiaSeNhacSong


        link = "http://chiasenhac.com/" + HtmlUtil.getAttribute(str, "href=\"");
        artist = HtmlUtil.htmlToText(in.readLine()).trim();
        while (!(str = in.readLine()).contains("<span class=\"gen\">")){
        }
        info = HtmlUtil.htmlToText(str.replace("<br />", " | ")).trim();
        ChiaSeNhacSong song = new ChiaSeNhacSong();
        song.setTitle(title);
        song.setArtist(artist);
        song.setLink(link);
        song.setQuality(info.contains("Lossless") ? Format.LOSSLESS : info.contains("320kbps") ? Format.MP3_320_KBPS : Format.MP3_128_KBPS);
        song.description = info;
        songs.add(song);
        if (songs.size() == 25) break;
      }
    }
View Full Code Here

TOP

Related Classes of huu.phong.musiconline.model.ChiaSeNhacSong

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.