易锦WEB渗透安全工程师精英培养计划班第一期
2023-02-07 20:40 作者:janet19961217 | 我要投稿
}
public void writeByte(byte[] bArr, String str) {
try {
OutputStream outputStream = new FileOutputStream(str);
outputStream.write(bArr);
outputStream.close();
} catch (IOException e) {
e.printStackTrace();
XposedBridge.log("文件写出失败");
}
}}