132133134135136137138139
* @param file * @param datas */ public static void appendTo(File file, byte[] datas) { new FileCommandInvoker().command(new MakeFileCommand(file)) .command(new AppendToFileCommand(file, datas)) .invoke(); }