Package huu.phong.musiconline.model

Examples of huu.phong.musiconline.model.RadioSong


          ln = str.substring(index);
          ln = new StringTokenizer(ln, "\"").nextToken();
          title = in.readLine().trim();
          title = Utils.ncrToUnicode(title);
          i++;
          RadioSong song = new RadioSong();
          song.setFullTitle(title);
          song.setLink(ln);
          StringBuilder builder = new StringBuilder();
          while ((str = in.readLine()) != null && !str.contains("</dl>")){
            builder.append(str);
          }
          song.setDescription(HtmlUtil.htmlToText(builder.toString()));
          songs.add(song);
        }
      }
      in.close();
    } catch (Exception e) {
View Full Code Here

TOP

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

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.