Hello
First sorry but my english is not very good.
Here is my question:
I made a vb.net dll, can i load this dll in java??
All the examples that i read in internet uses c++ dll
Thanks
Welcome to the Java Programming Forums
The professional, friendly Java community. 21,500 members and growing!
The Java Programming Forums are a community of Java programmers from all around the World. Our members have a wide range of skills and they all have one thing in common: A passion to learn and code Java. We invite beginner Java programmers right through to Java professionals to post here and share your knowledge. Become a part of the community, help others, expand your knowledge of Java and enjoy talking with like minded people. Registration is quick and best of all free. We look forward to meeting you.
>> REGISTER NOW TO START POSTING
Members have full access to the forums. Advertisements are removed for registered users.
Hello
First sorry but my english is not very good.
Here is my question:
I made a vb.net dll, can i load this dll in java??
All the examples that i read in internet uses c++ dll
Thanks
Welcome to the Forum! Please read this topic to learn how to post code correctly and other useful tips for newcomers.
There's a reason.All the examples that i read in internet uses c++ dll
Please do some research on the source, purpose, and intended use of a .dll and the .net target architecture, and compare what you learn there to the Java "write once, run anywhere" philosophy as enabled by the Java Virtual Machine or JVM.
ok, thanks
This is actually somewhat possible, depending on the DLL in question, but it is a tricky process that (as pointed out upthread) gives you a strong dependency to a specific platform and specific library loader.
The JNI specification describes how Java interfaces to native code.