如何在mono / linux上从Java调用.Net dll(函数)

时间:2016-04-24 20:42:34

标签: java c# linux jni4net

正如受试者所说,这可能吗?我知道jni4net,但它在Windows上。

下面是我得到的错误的摘录:

Java HotSpot(TM) 64-Bit Server VM warning: You have loaded library /tmp/mydll.dll which might have disabled stack guard. The VM will try to fix the stack guard now.
It's highly recommended that you fix the library with 'execstack -c <libfile>', or link it with '-z noexecstack'.
Native code library failed to load.

2 个答案:

答案 0 :(得分:2)

您可能希望在C中创建一个从Java代码调用的函数,并且它会调用您的C#函数。

看一下C {C#桥的here

答案 1 :(得分:0)

JNBridgePro支持您的方案。它支持在Mono上运行.NET端,因此.NET端可以在Linux上运行。有关更多信息,请访问JNBridge网站。

披露:我和JNBridge在一起。