2011-06-28 9 views
0

Eclipse 3.5.2およびUbuntu 10.10でこのコンソールプログラムがサイレントになっているのはなぜですか?現在の設定では、ムービーは可聴です。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(); 
    } 
} 

答えて

0

これをチェックするlinkあなたが掲示した質問は、日食に問題がある場合は1つです。リンクには、org.eclipse.swtにある問題のリストがあります。

+0

リンクが壊れています。 – H2ONaCl

+0

@broiyan:今すぐリンクを確認してください、私はそれを修正しました.. –

関連する問題