Results 1 to 7 of 7
Thread: Java Sound
- 08-21-2011, 09:26 PM #1
Member
- Join Date
- Jul 2011
- Posts
- 10
- Rep Power
- 0
Java Sound
Hi every one . I used this code for play Sound in java and program run without error , but sound repeat until i close Netbean . how can i solve this problem .
Java Code:import sun.audio.*; import javax.swing.*; import java.awt.event.*; import java.io.*; public class Sound extends JFrame implements ActionListener{ private JFrame frame = new JFrame(); private JButton button = new JButton("Click Me"); public Sound(){ frame.setSize(200,200); frame.add(button); button.addActionListener(this); setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE); frame.setVisible(true); } public static void main(String[] args) { Sound s = new Sound(); } public static void music(){ AudioPlayer MGP = AudioPlayer.player; AudioStream BGM; AudioData MD; ContinuousAudioDataStream loop = null; try{ BGM = new AudioStream(new FileInputStream("Windows.wav")); MD = BGM.getData(); loop = new ContinuousAudioDataStream(MD); }catch(IOException error){} MGP.start(loop); } public void actionPerformed(ActionEvent e) { music(); } }Last edited by Norm; 08-21-2011 at 10:09 PM. Reason: Added code tags
- 08-21-2011, 10:08 PM #2
What happens when you exit the program that is playing the music?how can i solve this problem .
Do the classes you are using have any methods for changing how it plays sound?
- 08-22-2011, 07:25 AM #3
Member
- Join Date
- Jul 2011
- Posts
- 10
- Rep Power
- 0
Hi . when close IDE sound repeating is cancel
- 08-22-2011, 07:40 AM #4
It seems that there is no code to stop the sound from playing so it is not surpising that it continues to play.
- 08-22-2011, 01:37 PM #5
What happens when you exit the program that is playing the music?
Does the music continue then?
- 08-25-2011, 06:38 PM #6
Member
- Join Date
- Jul 2011
- Posts
- 10
- Rep Power
- 0
when close netbean sound is stop
- 08-25-2011, 06:40 PM #7
Similar Threads
-
Java Sound
By cyberia in forum Advanced JavaReplies: 2Last Post: 08-19-2011, 12:58 PM -
Sound In java
By chetoos in forum New To JavaReplies: 2Last Post: 06-28-2011, 05:59 PM -
Problems with sound in java and USB sound card
By marblecatdog in forum New To JavaReplies: 1Last Post: 04-19-2011, 12:02 PM -
java sound
By nikkka in forum New To JavaReplies: 11Last Post: 04-10-2011, 02:54 PM -
Sound in applet Java
By toby in forum Java AppletsReplies: 1Last Post: 08-07-2007, 05:52 AM


LinkBack URL
About LinkBacks
Reply With Quote
Bookmarks