Created by wrbug on 2017/8/23.
| 19 | * Created by wrbug on 2017/8/23. |
| 20 | */ |
| 21 | public class FileUtils { |
| 22 | |
| 23 | public static void writeByteToFile(byte[] data, String path) { |
| 24 | try { |
| 25 | FileOutputStream localFileOutputStream = new FileOutputStream(path); |
| 26 | localFileOutputStream.write(data); |
| 27 | localFileOutputStream.close(); |
| 28 | } catch (Exception e) { |
| 29 | XposedBridge.log(e); |
| 30 | } |
| 31 | } |
| 32 | } |
nothing calls this directly
no outgoing calls
no test coverage detected