RadioSC J2ME Radio

i have tested RadioSC with nokia 5200 and listening now :D plug in your earphone before starting RadioSC if you get exception about headset just simply exit RadioSC unplug earphone plug in earphone start RadioSC get RadioSC jar java /* * To change this template, choose Tools | Templates * and open the template in the editor. */ package paket; import java.io.IOException; import javax.microedition.media.MediaException; import javax.microedition.midlet.*; import javax.microedition.lcdui.*; import javax.microedition.media.Manager; import javax.microedition.media.Player; /** * @author sertac */ public class RadioSC extends MIDlet implements CommandListener{ Display d; Form f; Command cmdPlay; String channel; TextField tfFreq; Player player; Command cmdExit; static final String banner="www.SmobileZ.blogspot.com"; public RadioSC() { d = Display.getDisplay(this); f = new Form(banner); tfFreq = new TextField("Channel", "90.60",5, TextF...