本文介紹了如何在Java中將字節數組轉換為AudioInputStream的處理方法,對大家解決問題具有一定的參考價值,需要的朋友們下面隨著小編來一起學習吧!
問題描述
我希望將字節數組轉換為AudioInputStream。字節數組以前是從*.wav文件填充的。我有以下代碼:
public static AudioInputStream writeBytesBackToStream(byte[] bytes) {
ByteArrayInputStream baiut = new ByteArrayInputStream(bytes);
AudioInputStream stream = null;
try {
stream = AudioSystem.getAudioInputStream(baiut);
} catch (UnsupportedAudioFileException e) {
e.printStackTrace();
} catch (IOException e) {
e.printStackTrace();
}
if(stream.equals(null) || stream == null) {
System.out.println("WARNING: Stream read by byte array is null!");
}
return stream;
}
現在我只想將此字節數組轉換為AudioInputStream,但引發了UnsupportedAudioFileException:
javax.sound.sampled.UnsupportedAudioFileException: could not get audio input stream from input stream
有沒有人有主意?
wav
如果正確讀取wav文件,字節數組將只包含原始推薦答案數據。因此,AudioSystem無法識別流的格式,并引發異常。
這在設計上是不可行的。您需要在流中提供完整的音頻格式圖像,才能使AudioSystem識別流的格式,而不僅僅是原始數據。
這篇關于如何在Java中將字節數組轉換為AudioInputStream的文章就介紹到這了,希望我們推薦的答案對大家有所幫助,