有没有办法直接从 Java 调用系统调用,或者是否需要首先调用本机方法?
答案1
您需要使用本机方法,但不需要自己实现。 Java 有一个 JNI 的变体,称为JNA(Java 本机访问),它允许您直接访问共享库,而不需要包装它们的 JNI 接口,因此您可以使用它直接与 glibc 连接:
import com.sun.jna.Library;
import com.sun.jna.Native;
public class Test {
public interface CStdLib extends Library {
int syscall(int number, Object... args);
}
public static void main(String[] args) {
CStdLib c = (CStdLib)Native.loadLibrary("c", CStdLib.class);
// WARNING: These syscall numbers are for x86 only
System.out.println("PID: " + c.syscall(20));
System.out.println("UID: " + c.syscall(24));
System.out.println("GID: " + c.syscall(47));
c.syscall(39, "/tmp/create-new-directory-here");
}
}
答案2
有必要使用本机方法或为您执行此操作的库。