File file = new File(Environment.getExternalStorageDirectory()+"/netease/cloudmusic/Cache/Music1/"+filename);
FileInputStream fileInputStream = new FileInputStream(file);
byte[] buf = new byte[fileInputStream.available()];
fileInputStream.read(buf);
fileInputStream.close();
int len = buf.length;
int key = 0xa3;
for (int temp = 0; temp < len; temp++)
{
buf[temp] ^= key;
}
网易云缓存提取
- 本文链接: https://liuyuhong.ml/archives/网易云缓存提取
- 版权声明: 本博客所有文章除特别声明外,均采用CC BY-NC-SA 3.0 许可协议。转载请注明出处!