繁体   English   中英

使用JNI集成Java和.net dll

[英]Integrating java and .net dll using JNI

我正在做一个小项目,它是Java和.net dll的互操作性。

焦点:

我只有一个Java文件,该文件调用.net dll,该文件是使用C#和CPP和MCPP创建的。

该程序只是一个hello world程序。

我只引用下面提到的网站。

http://www.codeproject.com/Articles/378826/How-to-wrap-a-Csharp-library-for-use-in-Java

http://www.codeproject.com/Articles/13093/C-method-calls-within-a-Java-program

最终,我得到了一些想法,并最终完成了一些错误。

编码:

#using "mscorlib.dll"
#using "CSharpHelloWorld.netmodule"

using namespace System;

public __gc class HelloWorldC
{
    public:

    // Provide .NET interop and garbage collecting to the pointer.
    CSharpHelloWorld __gc *t;

    HelloWorldC() {

        t = new CSharpHelloWorld();

        // Assign the reference a new instance of the object
    }

 // This inline function is called from the C++ Code
    void callCSharpHelloWorld() {

        t->displayHelloWorld();
    }
};

错误:

Error   1   error C4980: '__gc' : use of this keyword requires /clr:oldSyntax command line option   

Error   2   error C3699: 'interior_ptr' : cannot use this indirection on type 'CSharpHelloWorld'    

Error   3   error C2750: 'CSharpHelloWorld' : cannot use 'new' on the reference type; use 'gcnew' instead   

Error   4   error C2440: '=' : cannot convert from 'CSharpHelloWorld *' to 'CSharpHelloWorld ^' 11  WindowsComponentProject

Error   5   error C2011: 'HelloWorldC' : 'class' type redefinition  6   WindowsComponentProject

Error   6   error C3699: '*' : cannot use this indirection on type 'HelloWorldC'    18  WindowsComponentProject

Error   7   error C2750: 'HelloWorldC' : cannot use 'new' on the reference type; use 'gcnew' instead    18  WindowsComponentProject

Error   8   error C2440: 'initializing' : cannot convert from 'HelloWorldC *' to 'HelloWorldC ^'    18  WindowsComponentProject

Error   9   error C2027: use of undefined type 'HelloWorldC'        21  WindowsComponentProject

Error   10  error C2227: left of '->callCSharpHelloWorld' must point to class/struct/union/generic type  21 WindowsComponentProject

我只是寻找一些网站来更改CLR属性的解决方案,但是它对我没有帮助。.预先感谢!

您正在使用旧的托管C ++语法。 新的称为C ++ / CLI。

通过在类声明的前面加上ref关键字来创建引用类型。 CSharpHelloWorld^ t一样,使用^声明引用变量。 gcnew是用于在托管堆中创建对象的工具。

您应该按如下所示修改课程。

using namespace System;

public ref class HelloWorldC { 

public:

// Provide .NET interop and garbage collecting to the pointer.
CSharpHelloWorld^ t;

HelloWorldC() {

    t = gcnew CSharpHelloWorld();

    // Assign the reference a new instance of the object
}

// This inline function is called from the C++ Code
void callCSharpHelloWorld() {

    t->displayHelloWorld();
}
};

暂无
暂无

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM