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.
J2MEでファイルをクリアして空(コンテンツなし)にする方法は? すべての出力ストリーム(OutputStream, DataOutputStream, PrintStream...)は、ファイル内の1バイト/バイトを削除する方法がないのに、ファイルにコンテンツを追加する ことしかできません。 Netbeams7.0.1を使用 しています。助けてくれてありがとうwrite()
OutputStream, DataOutputStream, PrintStream...
write()
次のようにwrite()メソッドを呼び出します。
.write((new String()).getBytes());
これにより、ファイルが空になります。
ファイルを削除して、新しいファイルを作成することもできます。これにより、同じファイル名を持つ空のファイルも作成されます。