QByteArray をファイルに書き込むには:
QByteArray data;
// If you know the size of the data in advance, you can pre-allocate
// the needed memory with reserve() in order to avoid re-allocations
// and copying of the data as you fill it.
data.reserve(data_size_in_bytes);
// ... fill the array with data ...
// Save the data to a file.
QFile file("C:/MyDir/some_name.ext");
file.open(QIODevice::WriteOnly);
file.write(data);
file.close();
Qt 5 (5.1 以降) では、(既存のファイルのデータを変更するのではなく) 新しい完全なファイルを保存するときに、代わりにQSaveFileを使用する必要があります。これにより、書き込み操作が失敗した場合に古いファイルが失われる状況を回避できます。
// Save the data to a file.
QSaveFile file("C:/MyDir/some_name.ext");
file.open(QIODevice::WriteOnly);
file.write(data);
// Calling commit() is mandatory, otherwise nothing will be written.
file.commit();
もちろん、エラーがないかどうかを確認することを忘れないでください。
また、これで質問に答えても、おそらく問題は解決しないことに注意してください。