问题描述
- 将音频以流的形式写给前台,前台怎么取呢?
-
后台代码:
URL url = new URL("http://localhost:8080/...../qingwa.wav");
BufferedInputStream br = new BufferedInputStream(url.openStream());
OutputStream out = response.getOutputStream();
while ((len = br.read(buf)) > 0)
out.write(buf, 0, len);
前台代码:
$.ajax({.....success:function(msg){ console.debug(msg);}});这里打印出来的是.......
?WAVEfmt ?????"V??"V??????data?S 系列乱码
如何将其转换为音频呢?
解决方案
为啥你要用ajax debug 打印?
比如html5 的 audio tag
时间: 2024-12-28 14:49:13