Welcome!

Welcome to the Official BlackBerry Support Community Forums. This is your resource to discuss support topics with your peers, and learn from each other. New to the forum? Please visit the ‘Getting Started’ link below.
inside custom component

Java Development

Reply
Developer
ubuntaur
Posts: 41
Registered: ‎09-11-2009
Accepted Solution

Playing audio file included in project

Right now I am able to play audio files by retrieving them from a file location path.

 

Ex: file:///SDCard/BlackBerry/music/file.wav

 

Player player = javax.microedition.media.Manager.createPlayer(theFile);
                    player.realize();
                    player.prefetch();
                    //start the player
                    player.start();

 

 

 

String theFile = "file:///SDCard/BlackBerry/music/file.wav";

Player player = Manager.createPlayer(theFile);
player.realize();
player.prefetch();

//start the player
player.start();

 

How do I play a file that I have included in my project file?

 

Please use plain text.
Developer
peter_strange
Posts: 17,722
Registered: ‎07-14-2008

Re: Playing audio file included in project

I suspect this will help.

 

http://supportforums.blackberry.com/t5/Java-Development/Add-plain-text-or-binary-files-to-an-applica...

 

Don't forget to add the file to your project.

Please use plain text.
Developer
Developer
CMY
Posts: 1,117
Registered: ‎02-10-2009
My Carrier: Verizon

Re: Playing audio file included in project

Use the Class.forName().getResourceAsStream(). There are several examples if you search.

Please use plain text.
Developer
ubuntaur
Posts: 41
Registered: ‎09-11-2009

Re: Playing audio file included in project

[ Edited ]

Thanks! That got it working.

Please use plain text.