Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
如何在不使用 CORBA、SWIG 等中间体的情况下在 Java 中对 C 对象进行类型转换或解码?
我需要从 C 到 Java 的直接方法。
您正在寻找Java Native Interface,它允许您拥有实现是“本机”(编译的非 Java 代码)的 Java 方法,还允许您在“本机”(编译的非 Java)应用程序中嵌入 JVM . “本机”部分可以用 C 编码。