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成神之路。
共有 0 条评论