Java tutorial
//package com.java2s; import java.io.File; import java.io.FileOutputStream; import java.io.IOException; public class Main { public static void createFileFromBytes(byte[] bytes, File file) throws IOException { FileOutputStream os = new FileOutputStream(file); os.write(bytes); os.close(); } }