Hi I am trying to write an application that will play morse code. I just wanted to know if there was a default system sound in java like some beep, or do I have to download some sound file from the internet?

link|improve this question

71% accept rate
feedback

3 Answers

up vote 3 down vote accepted

You can:

Print the ASCII bell character to the console (will emit a beep sound):

public class DoBeep {
    public static main(String args[]) {
        System.out.print("\007"); // bell ASCII char
        System.out.flush();
    }
}

Use the beep() method that will use the buzzer on the motherboard:

import java.awt.*;

public class DoBeep {
    public static void main(String args[]) {
        Toolkit.getDefaultToolkit().beep();     
    }
}
link|improve this answer
feedback

Have a look at the Java Sound API, which can play MIDI tones.

link|improve this answer
There's been discussion of removing the MIDI output capabilities in Java 7. – Powerlord Mar 3 '10 at 14:54
feedback

You may want to look at jMorse for some tips. This isn't to discourage you from your effort, but rather to provide a reference.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.