Java RandomAccessFile setLength()方法
java.io.RandomAccessFile.setLength(long newLength) 方法设置此文件的长度。
1 语法
public void setLength(long newLength)
2 参数
newLength:该文件的所需长度
3 返回值
无
4 示例
package com.yiidian;
/**
* 一点教程网: http://www.yiidian.com
*/
/**
* java.io.RandomAccessFile.setLength(long newLength)方法的例子
*/
import java.io.*;
public class Demo {
public static void main(String[] args) {
try {
// create a new RandomAccessFile with filename test
RandomAccessFile raf = new RandomAccessFile("d:/test.txt", "rw");
// write something in the file
raf.writeUTF("Hello World");
// set the file pointer at 0 position
raf.seek(0);
// print the string
System.out.println("" + raf.readUTF());
// print current length
System.out.println("" + raf.length());
// set the file length to 30
raf.setLength(30);
// print the new length
System.out.println("" + raf.length());
} catch (IOException ex) {
ex.printStackTrace();
}
}
}
假设test.txt文件内容如下:
ABCDE
输出结果为:
Hello World
34
30
热门文章
优秀文章