I have tried this code on eclipse javaSE1.7, which is supposed to emit a beep, but it does not. Why is that?
public class Main {
public static void main(String args[]) {
// ASCII bell
System.out.print("\0007");
System.out.print("\007");
System.out.flush();
}
}
There are many possibilities:
By the way, you are actually printing a NUL followed by '7'.