Почему эта консольная программа не работает в Eclipse 3.5.2 и Ubuntu 10.10? Обратите внимание, что фильмы слышны при текущей настройке.
import java.awt.Toolkit;
public class JustBeep
{
public static void main(String[] args)
{
System.out.println("This is a console program that should beep.");
// try this
System.out.print('\u0007');
// this appears as a special character in the Eclipse console
// and is not what I want
System.out.flush();
// try something different
Toolkit.getDefaultToolkit().beep();
}
}