我无法在FileObject或FileContent上找到任何允许我在现有文件上设置新大小的方法。
FileContent.getSize()
没有对应的setSize()
。RandomAccessContent
确实有一些关于查找的评论,但它似乎没有说明如果一个人在结束之前查找某个地方,然后简单地关闭文件,则文件会缩小。
/**
* Sets the file-pointer offset, measured from the beginning of this
* file, at which the next read or write occurs. The offset may be
* set beyond the end of the file. Setting the offset beyond the end
* of the file does not change the file length. The file length will
* change only by writing after the offset has been set beyond the end
* of the file.
* <br/>
* <b>Notice: If you use {@link #getInputStream()} you have to reget the InputStream after calling {@link #seek(long)}</b>
*
* @param pos the offset position, measured in bytes from the
* beginning of the file, at which to set the file
* pointer.
* @throws IOException if <code>pos</code> is less than
* <code>0</code> or if an I/O error occurs.
*/
public void seek(long pos) throws IOException;
使用公共api,您不能设置大小或截断任何文件。然而,一些专门的类型确实提供了一种可以使用的方法。也就是说,该方法也可能不是公开的,需要讨厌的反射。
如果你想通过使用setSize(int size)
来设置大小,它会在一些api中设置大小,但是当size
小于file.getSize()
时可能会有一些数据丢失。
一些api仍然允许通过将大小设置为0来截断文件,这意味着内容被删除。它实际上并没有设置size属性,而是删除了数据,然后刷新了size属性。
为了避免这种混淆,这个API已经删除了setSize(int size)
方法。
但是您仍然可以通过使用outputStream
引用向文件对象添加或删除内容来间接设置大小。