numBytesRead = sourceBis.read(buffer, 0, buffer.length);
if (numBytesRead != -1) {
line.write(buffer, 0, numBytesRead);
}
}
line.drain();
line.close();
} catch (UnsupportedAudioFileException e) {
throw new RuntimeException(e);
} catch (IOException e) {