Back to project page RadioRake.
The source code is released under:
GNU General Public License
If you think the Android project RadioRake listed in this page is inappropriate, such as containing malicious code/tools or violating the copyright, please email info at java2s dot com, thanks.
package com.asp.radiorake.filehandling; //from ww w . j a v a 2 s. c o m import android.util.Log; import com.asp.radiorake.RadioDetails; import java.io.BufferedReader; import java.io.File; import java.io.FileNotFoundException; import java.io.FileReader; import java.io.IOException; public class M3uHandler extends FileHandler { private static final String M3UTAG = "com.asp.radiorake.filehandling.M3uHandler"; public static RadioDetails parse(RadioDetails radioDetails, String basePath) { String m3uFile = getFile(radioDetails.getPlaylistUrl(), basePath); try { FileReader fileReader = new FileReader(m3uFile); BufferedReader bufferedReader = new BufferedReader(fileReader); String line; while ((line = bufferedReader.readLine()) != null) { if (!line.startsWith("#") && line.startsWith("http")) { radioDetails.setStreamUrl(line); Log.d(M3UTAG, ".m3u contained these details: " + line); } } bufferedReader.close(); fileReader.close(); } catch (FileNotFoundException e) { Log.e(M3UTAG, m3uFile + " cannot be found", e); } catch (IOException e) { Log.e(M3UTAG, m3uFile + " cannot be read", e); } finally { new File(m3uFile).delete(); } return radioDetails; } }