文件在Java中截断操作 [英] File truncate operation in Java

查看:440
本文介绍了文件在Java中截断操作的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

在Java中截断文件的最佳做法是什么?例如这个虚拟函数,就像澄清意图的一个例子一样:

What is the best-practice way to truncate a file in Java? For example this dummy function, just as an example to clarify the intent:

void readAndTruncate(File f, List<String> lines)
        throws FileNotFoundException {
    for (Scanner s = new Scanner(f); s.hasNextLine(); lines.add(s.nextLine())) {}

    // truncate f here! how?

}

该文件无法删除,因为该文件的作用

The file can not be deleted since the file is acting as a place holder.

推荐答案

使用 FileChannel#truncate()

    FileChannel outChan = new FileOutputStream(f, true).getChannel();
    outChan.truncate(newSize);
    outChan.close();

这篇关于文件在Java中截断操作的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持IT屋!

查看全文
登录 关闭
扫码关注1秒登录
发送“验证码”获取 | 15天全站免登陆