|
Re: Making sound in JAVA
I've never looked into creating sound in JAVA. However I do know its possible to create a system beep, or something close to it. Just use a \7 as you would a \n for a line return.
Example:
public class beep
{
public static void main (String[] args)
{
System.out.print("\7");
}
}
|