Here you can find the source of beep()
public static void beep()
//package com.java2s; //License from project: Open Source License public class Main { public static void beep() { System.out.write(7);/*from w w w .ja v a2s. c o m*/ System.out.flush(); } }