我有一个方法,该方法使用 Java 8 的sun.misc.SharedSecrets.getJavaIOFileDescriptorAccess().get(FileDescriptor)
获取真实的POSIX文件描述符。在 Java 9(及更高版本)中, SharedSecrets 已迁移到jdk.internal.misc
。
如何在Java 11中获取POSIX文件描述符?
private int getFileDescriptor() throws IOException {
final int fd = SharedSecrets.getJavaIOFileDescriptorAccess().get(getFD());
if(fd < 1)
throw new IOException("failed to get POSIX file descriptor!");
return fd;
}
谢谢!
答案 0 :(得分:1)
仅在紧急情况下(或直到您找到其他方法,因为不支持此方法)才使用此方法,因为它会执行API意外的操作,并且不受支持。买者自负。
package sandbox;
import java.io.FileDescriptor;
import java.io.FileInputStream;
import java.io.IOException;
import java.lang.reflect.Field;
public class GetFileHandle {
public static void main(String[] args) {
try (FileInputStream fis = new FileInputStream("somedata.txt")) {
FileDescriptor fd = fis.getFD();
Field field = fd.getClass().getDeclaredField("fd");
field.setAccessible(true);
Object fdId = field.get(fd);
field.setAccessible(false);
field = fd.getClass().getDeclaredField("handle");
field.setAccessible(true);
Object handle = field.get(fd);
field.setAccessible(false);
// One of these will be -1 (depends on OS)
// Windows uses handle, non-windows uses fd
System.out.println("fid.handle="+handle+" fid.fd"+fdId);
} catch (IOException | NoSuchFieldException | IllegalAccessException e) {
e.printStackTrace();
}
}
}