Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
RandomAccessFile に書き込んでいます。テキストファイルを実行しようとするとraf.writeBytes("")、この空は無視され、ファイルから削除されます。テキストファイルがこの空の文字を保存する方法はありますか?
raf.writeBytes("")
これを試して、空のcharバイトデータを書き込んでください。
raf.writeByte(0);