Answers:
您需要使用本机方法,但无需自己实现。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");
}
}
syscall
界面中?不,syscall
就像C端一样,使用一个整数来表示要进行的适当调用。里面有很多#define
s /usr/include/asm/unistd.h
,#define __NR_mkdir 39
以使人们更容易调用C函数,但是我认为没有任何方法可以将它们自动导入Java,您必须自己定义它们
有必要使用本机方法或为您使用的本机库。