MCPcopy Create free account
hub / github.com/WrBug/dumpDex / FileUtils

Class FileUtils

app/src/main/java/com/wrbug/dumpdex/util/FileUtils.java:21–32  ·  view source on GitHub ↗

Created by wrbug on 2017/8/23.

Source from the content-addressed store, hash-verified

19 * Created by wrbug on 2017/8/23.
20 */
21public 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}

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected