java f.lenth返回值_long length
描述
所述java.io.RandomAccessFile.getFD()方法返回與此流關聯的不透明文件描述符對象。
聲明
以下是java.io.RandomAccessFile.getFD()方法的聲明。
public final FileDescriptor getFD()
參數
NA
返回值
此方法返回與此流關聯的文件描述符對象。
異常
IOException - 如果發生I / O錯誤。
實例
以下示例顯示了java.io.RandomAccessFile.getFD()方法的用法。
package com.tutorialspoint;
import java.io.*;
public class RandomAccessFileDemo {
public static void main(String[] args) {
try {
// create a new RandomAccessFile with filename test
RandomAccessFile raf = new RandomAccessFile("c:/test.txt", "rw");
// write something in the file
raf.writeUTF("Hello World");
// set the file pointer at 0 position
raf.seek(0);
// read and print the contents of the file
System.out.println("" + raf.readUTF());
// return the file descriptor of the stream
System.out.println("" + raf.getFD());
// close the strea and release resources
raf.close();
} catch (IOException ex) {
ex.printStackTrace();
}
}
}
假設我們有一個文本文件c:/test.txt,它具有以下內容。此文件將用作示例程序的輸入
ABCDE
讓我們編譯并運行上面的程序,這將產生以下結果
Hello World
java.io.FileDescriptor@152b6651
總結
以上是生活随笔為你收集整理的java f.lenth返回值_long length的全部內容,希望文章能夠幫你解決所遇到的問題。
- 上一篇: python到底能干啥-Python到底
- 下一篇: ajax结合java,ajax技术应用详