亲爱的,
我一直试图获取ADF页面来播放存储在扩展名为“ wav”的服务器上的音频文件,当我使用<af:media>
时遇到了一个问题
按照链接的详细信息/说明进行操作:
https://docs.oracle.com/cd/E24001_01/apirefs.1111/e12419/tagdoc/af_media.html
到目前为止的结果,我设法使用托管bean来获取路径,我使用页面流范围将它作为源提供了
<af:media source="#{pageFlowScope.filePath}" standbyText="Play Recording" id="m3"/>
filePath看起来像这样:/recording/2018/11/07/test.wav
但Chrome上的结果如下:
这是检查的元素:
<embed width="275" height="40" name="pt1:pc1:m3" type="application/x-mplayer2" pluginspage="http://www.microsoft.com/Windows/MediaPlayer/" autostart="0" src="/TestWebApp-ViewController-context-root/recording/2018/11/07/test.wav">
所以我想知道以前是否有人尝试过
此致
答案 0 :(得分:0)
我已经通过使用音频html5来解决了这个问题,并且托管bean使用通用编解码器库在base64中提供了文件
private String encodeFileToBase64Binary(String fileName)
throws IOException {
File file = new File(convert(fileName));
byte[] bytes = loadFile(file);
byte[] encoded = Base64.encodeBase64(bytes);
String encodedString = new String(encoded);
return "data:audio/mpeg;base64,"+encodedString;
}
private static byte[] loadFile(File file) throws IOException {
InputStream is = new FileInputStream(file);
long length = file.length();
if (length > Integer.MAX_VALUE) {
// File is too large
}
byte[] bytes = new byte[(int)length];
int offset = 0;
int numRead = 0;
while (offset < bytes.length
&& (numRead=is.read(bytes, offset, bytes.length-offset)) >= 0) {
offset += numRead;
}
if (offset < bytes.length) {
throw new IOException("Could not completely read file "+file.getName());
}
is.close();
return bytes;
}
然后我给定路径调用了上述方法,并将其存储在pageFlowScope中
jspx部分:
<audio src="${pageFlowScope.filePath}" controls="controls" controlsList="nodownload"></audio>
此致