How to get .Net assembly (dll) information using java? - java

I would like to get .Net assembly (dll) file information using java.This is my sample .Net class
namespace com.test
{
public class Testing
{
}
}
So I would like to get this class name ('Testing') and other methods that included in this class using java.Is there any ideas or resources links?

Use JNI (Java Native Interface)
Official Guide
From Wikipedia:
The Java Native Interface (JNI) is a programming framework that enables Java code running in a Java Virtual Machine (JVM) to call and be called by native applications (programs specific to a hardware and operating system platform) and libraries written in other languages such as C, C++ and assembly

Related

Access external native functions using JNI

I have a small doubt regarding native library access using NDK.
Is it possible to access native functions in the library using JNI? I have a library built completely on C++, is it possible to load that external library and write JNI to communicate with functions in the library?
If not is it possible to embed that JNI class within the library and communicate with it from Android activity?
Take a look at this sample code:
https://github.com/mkowsiak/jnicookbook/tree/master/recipes/recipeNo025
There, you have a sample code that wraps C++ code inside JNI wrapper.
Unfortunately, all you can do (inside JNI) is to call native function.
Have fun with JNI!

What are native libraries and native methods interface in JVM?

I came across this figure while studying JVM. I understood all the components except "Native method interface" and "native method libraries". What are those exactly?
Native method interface: Native method interface is an interface that connects native method libraries (implemented in C, C++ etc.) with JVM for executing native methods.
Native method library: Implementation in native code.
Please refer this link for more information.
Native Method Interface (JNI) is part of JDK that connects Java code with native applications and libraries that are written in other programming languages, such as C, C++, and assembly.
Why use JNI?
Use features that are platform-dependent and are not supported in the Java class library.
Increase performance by implementing a time-critical code in a lower-level language.
Access libraries that already written in another programming language.
Native Method Libraries are libraries that are written in other programming languages, such as C, C++, and assembly.
These libraries can be loaded through JNI.
So, the picture you posted is saying that JNI allows access to Native Method Libraries.
Java Native Interface:
The above diagram you could come across when you are studying about java virtual machine functionality. There is nothing like Native library when you are installing and working with java at first time. Those are all added when we are developing our own library , but it should be in other languages.
When you are developing functionality in other languages Java Virtual machine will include those libraries at the execution level(Third level) of the java application.
To add to this, there are also native libraries in jvm $JAVA_HOME/jre/lib/amd64/ and these are core libraries which are loaded by reflection(null/boot classloader) which is why they are available at run-time while compiling and we're able to use native methods of Object class like getClass(). So, not only for custom development using JNI but also, some of the core functionalities of java are written into native.

java JNA interface auto generator

I have a third-party DLL, which consists of fairly a big number of interrelated classes (maybe written in C++) , the Java Native Access package wants the programmer to write an interface for each and every class within the DLL, In VB.net the Object Explorer makes life a piece of cake; however, in java i couldn't find such a tool.
Are there any tools that takes the DLL file and generate all needed JNA interfaces ?
Best Regards
JNAerator can "compile" native headers in order to generate JNA mappings, with some limited C++ support.

Calling C++ functions from Java

I am developing a Java application in which I need to call some C++ functions (from Google Talk library libjingle) . The objective is to run it all on Google App Engine (which only supports Python or Java).
How can I do this?
You need to define native methods in your java code for whatever you want to be implemented in C++ and directly access your native code. Then you run javah on your code and it will generate the C header files for you and you'll need to provide C++ implementations.
The native methods you can call from your Java code like any other methods and still they'll have their implementation written in C++ and talking to whatever other native library directly.
You then need to set the java.library.path system property to include the shared C/C++ libraries that you require: the google library and your own JNI implementation library would be required in this case.
If the library has C bindings through a DLL/SO, I usually prefer writing wrappers in Java using Java Native Access (JNA) rather than writing the bindings in C/C++ using the Java Native Interface (JNI). The former is easier to manipulate as the JNI access to Java objects is a real pain in the neck. However, it's not as obvious to wrap C++ classes using that API.
You might also want to look into the Simplified Wrapper and Interface Generator (SWIG) for automating part of this process!
You can't run native code on App Engine - only JRE code. If there's no avoiding the native code, you'll need to run this part of your app on another system, and call it from your App Engine app - or use the built-in XMPP API, in this case.

Integrate applications using multiple programming languages into a Java application

Is there an open source application that could integrate applications using multiple programming languages into a Java application?
Some options:
Languages that can be compiled and run into the JVM, like python and javascript. But you might have a difficult time if the programs where not built from the beggining to run inside the JVM.
JNI, java's native interface. This allows interfacing Java with native (i.e. C) languages. If your other language is not C or C++ then probably you will need to write a native interface for them too.
API. Using web services or socket communication have the two languages communicate.
Sharing data. Having both programs share files or databases in a common format.
Not quite sure what you mean, but there are several languages that could be compiled to Java byte code and run under JVM.
http://en.wikipedia.org/wiki/Java_Native_Interface
The Java Native Interface is a programming framework that allows Java code running in a Java Virtual Machine to call and to be called by native applications (programs specific to a hardware and operating system platform) and libraries written in other languages, such as C, C++ and assembly.

Categories

Resources