我用这段代码播放mp3文件。它在没有三星的任何设备中播放......我搜索了很多但无法解决这个问题。任何人都可以使用任何方法在任何设备上播放mp3。
Exception Source : mscorlib
Exception Type : CryptographicException
Exception Message : The parameter is incorrect.
Exception Stacktrace :
at System.Security.Cryptography.CryptographicException.ThrowCryptographicException(Int32 hr)
at System.Security.Cryptography.Utils._ImportKey(SafeProvHandle hCSP, Int32 keyNumber, CspProviderFlags flags, Object cspObject, SafeKeyHandle& hKey)
at System.Security.Cryptography.RSACryptoServiceProvider.ImportParameters(RSAParameters parameters)
答案 0 :(得分:1)
在启动播放器之前调用prepare方法,并在logcat中打印异常,也可以这样捕获,
try {
//code lies here
}
} catch (IllegalArgumentException e) {
e.printStackTrace();
} catch (SecurityException e) {
e.printStackTrace();
} catch (IllegalStateException e) {
e.printStackTrace();
} catch (IOException e) {
e.printStackTrace();
}