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...) 只能write()将内容添加到文件中,而我看不到删除文件中的一个字节/字节的方法。 我使用 Netbeams 7.0.1 感谢您的帮助
OutputStream, DataOutputStream, PrintStream...
write()
像这样调用你的write()方法:
.write((new String()).getBytes());
这将使您的文件为空。
您还可以删除文件并创建一个新文件。这也将导致一个具有相同文件名的空文件。