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.
我修改了写入文件示例,以便可以存储输入中的一些文本。我将文本存储aaaaaaaaaa到文件中,然后将较短的文本存储到bbbbb具有相同功能的同一文件中。
aaaaaaaaaa
bbbbb
此外,我正在使用按名称读取文件示例来读取文件。我得到了——使用 Chromium 15——这个结果:
bbbbbaaaaa
如何重置文件的内容?该规范仅提供 getBlob() 和 append()。
FileWriter 接口上有一个“截断”方法。(它的工作原理更像是“setFileSize”方法,因为它可以将文件“截断”到比它已经拥有的更大的大小。)