How to call into .NET dll from Java

2020-02-29 07:32发布

I have this code to create a simple .NET .dll. It only returns an int.

But, it is not working inside Java.

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;

namespace ReturnINT
{
    public class ReturnINT
    {

        public static int RetornaInteiro ()
        {
            try
            {
                int number = 2;

                return number;
            }
            catch (Exception)
            {
                return 1;
            }
        }
    }
}

How can I call the method from within Java?

When I Use JNI i have this error IN java:

Exception in thread "main" java.lang.UnsatisfiedLinkError: Dll.RetornaInteiro()V
      at Dll.RetornaInteiro(Native Method)
      at Dll.main(Dll.java:27)

标签: c# java dll
2条回答
相关推荐>>
2楼-- · 2020-02-29 08:13

Check the http://www.javonet.com as well. With one-jar file you can load this dll and call as follows:

Javonet.AddReference("your-lib.dll");
int result = Javonet.getType("ReturnINT").Invoke("RetornaInteiro");

Javonet will automatically load your library in .NET process and give you access to any classes and types contain within it. Next you can get your type and invoke static method. Method results and arguments are automatically translated between JAVA and .NET types. You can pass for example string or bool arguments like that

Boolean arg1 = true;
String arg2 = "test";
Javonet.getType("ReturnINT").Invoke("MethodWithArguments",arg1,arg2);

And they will be translated automatically.

In addition you can also create instance of your type, subscribe events, set/get properties and fields, handle exceptions or even pass value-type arguments. Check the docs for more details:

http://www.javonet.com/quick-start-guide/

PS: I am member of Javonet team. Therefore feel free to ask me any detailed questions regarding native integrations and our product.

查看更多
可以哭但决不认输i
3楼-- · 2020-02-29 08:26

You can call it directly: http://jni4net.sourceforge.net/

Or you can call it as an executable.

查看更多
登录 后发表回答