java.io.IOException: Prepare failed.: status=0x1

应该是名字有空格或者中文无法识别 1.直接改成纯英文名字 2.查了查资料和网上的解决办法如下: mp.setDataSource(PATH_TO_FILE); mp.prepare(); 这个地方修改如下: File file = new File(strPath); FileInputStream fis = new FileInputStream(file); mediaPlayer.setDataSource(fis.getFD()); mp.prepare(); 或者 把mediaPlayer.prepare;改成 mediaPlayer.prepareAsync(); 这种情况会报个prepare called in state 8错误

java.io.IOException: Prepare failed.: status=0x1最先出现在Python成神之路

版权声明:
作者:Mr李
链接:https://www.techfm.club/p/18988.html
来源:TechFM
文章版权归作者所有,未经允许请勿转载。

THE END
分享
二维码
< <上一篇
下一篇>>