1-) Java - 55-) MÜZİK(WAV) DOSYASI AÇMA
private void jButton1ActionPerformed(java.awt.event.ActionEvent evt) {
try
AudioInputStream stream = AudioSystem.getAudioInputStream(new File("buyuk.wav"));
AudioFormat format = stream.getFormat();{// buyuk.wav?ı hem projenin içine at hemde jarın bulunduğu yere
DataLine.Info info = new DataLine.Info(Clip.class, stream.getFormat(), ((int) stream.getFrameLength() * format.getFrameSize()));
Clip clip = (Clip) AudioSystem.getLine(info);
clip.open(stream);
clip.start();
} catch (UnsupportedAudioFileException | IOException | LineUnavailableException e) { } }