7172737475767778798081
fileName += ".mid"; try { BufferedWriter out = new BufferedWriter(new FileWriter(fileName)); // TODO Something is wrong with saving binary information. out.write(melody.toMidiBytes()); out.close(); } catch (Exception ex) { System.err.println(ex); } }