How to develop a sound recorder program in Java Swing
- Details
- Written by Nam Ha Minh
- Last Updated on 01 July 2019   |   Print Email
This tutorial presents a sample Sound Recorder program written in Java Swing and provides step-by-step guide on how to develop such one. The program looks like this:
The program is working as follows:
- Click Record button to start recording, the record time is counting:
- Click Stop to end recording, the program will ask for saving the sound:
- After saving the recorded sound into a WAV file, the Play button is enable to allow playing back:
- Click Play to start playing the recent recorded sound, the time is counting again like this:
- Click Stop to stop playing back or wait until the playback completes:
Now you can repeat the same steps to record another one, cool right? Let’s see how to build this nice program in Java.
For technical details, refer to the following tutorials:
- How to record sound:
- How to play back sound: How to play back audio in Java with examples.
The following class diagram explains how the program is designed:
As we can see, the program consists of four main classes:
- SoundRecordingUtil.java: implements functionalities to start recording, stop recording and save the recorded sound into a WAV file. Code that calls the start()method should be executed in a separate thread, because it blocks the current thread until a call to stop() method is made. Doing so to make the GUI does not freeze when the recording is taking place.
- AudioPlayer.java: implements functionalities to start and stop playing back the recorded sound saved in the WAV file. Code that call the play() method should be executed in a separate thread, similar to the situation of the SoundRecordingUtil class.
- RecordTimer.java: implements a function to count up the record/playback time in the format of HH:mm:ss e.g. 00:02:45 (0 hours and 2 minutes and 45 seconds). There should be a separate thread to run this task.
- SwingSoundRecorder.java: this is the main program that constructs all the graphical user interface stuffs and wires all the above classes together to form a nice and functional program.
To explore details of each class, download Eclipse-based project the program (zip archive) and look at the src directory. You can also try to run the program by downloading and executing the program’s jar file in the attachments section (require Java 7 or later).
Related Java Sound Tutorials:
- How to play back audio in Java with examples
- How to develop a sound recorder program in Java Swing
- Java sound record utility class
- Java audio player sample application in Swing
Other Java Tutorials:
- 10 Common Mistakes Every Beginner Java Programmer Makes
- 10 Java Core Best Practices Every Java Programmer Should Know
- How to become a good programmer? 13 tasks you should practice now
Comments
My question how to capture number of ligne