close mp3 file handles.

This commit is contained in:
fd
2015-02-13 23:17:33 -05:00
parent ed2d3058ba
commit 3a5f66ba81
3 changed files with 23 additions and 0 deletions

View File

@@ -199,4 +199,13 @@ public class Mp3InputStream extends InputStream implements AudioInputStream {
return skipped;
}
@Override
public void close() throws IOException {
try {
bitstream.close();
} catch (BitstreamException e) {
e.printStackTrace();
}
}
}