Playing sound in Java - pt.2

PHOTO EMBED

Thu Jun 30 2022 12:47:57 GMT+0000 (Coordinated Universal Time)

Saved by @Mahmouxd #java #sound

public void playMySound() {
    if (mClip != null) {
        mClip.setMicrosecondPosition(0);     // Reset to the start of the file
        mClip.start();
    }
}
content_copyCOPY