Posts

Showing posts from October, 2013
Java Code To Play MP3 File in pc.. _______________________________________________________________________________ System  Requirement : > Install Java Media Framework.(JVM) For this you'll need to install  Java Media Framework (JMF)  in your PC. This is much easier than coding, it's just like you install other softwares. Clicking on Agree, Next, Finish will do the thing. You will also not have any head ache with the  classpath settings  because it is automatically done. If you know how to install software, then you probably will install the JMF. The download link is provided above, all you need to do is to accept the  license agreement  first and then if choose your Operating System and then click on the file. If you use windows, i recommend to download  Windows Performance Pack. Java code for Audio player... import javax.media.*; import java.net.*; import java.io.*; import java.util.*; class AudioPlay { public static void main...