Use a .jar java library API in C#?

JavaC#.NetInterop

Java Problem Overview


I'm an entry level programmer so please be descriptive in your responses.

I am trying to use a Java API given as a .jar file in my C# .net application. I don't know much Java, but this .jar file says "no main-class manifest attribute" when I try to run it so this means its a library? This Java API also comes with a .java file which shows how to use the library but I cannot see the code inside the .jar.

I found https://stackoverflow.com/questions/171717/using-java-classes-with-c">this question on this site, and one of the answers reads, "In simple way you can pack your java classes to jar file then In C# use Process class for execute and map IO stream." I am semi-familiar with the Process class in C# but I don't understand how I could use it to use a Java library in my C# .net project.

Is this possible? or was that answer incorrect?

If so, could you explain how I can use the .jar library in my C# app.

Java Solutions


Solution 1 - Java

You can do it using IVKM.Net. IVKM.NET includes an application called ikvmc. Here’s the documentation for this tool:

http://www.ikvm.net/userguide/ikvmc.html

To use it compile your java code into a Jar.

Then run the ikvmc program:

ikvmc myCode.jar

If your jar contains a main() function, it will be converted into an exe that can be run on the CLR. Otherwise it will be converted into dll’s. To use the dll’s in your project just add them as references in Visual Studio and the same API that was available to you in Java will be accessible in your .Net application.

You can also include the IKVM.GNU.Classpath.dll dll from ikvmc and use the standard java class libraries in your application.

Solution 2 - Java

Have a look at IKVM ... it has tools to give you some level of interop. When you say Java API I assume you want to call some functionality from the jar rather than just execute it

Solution 3 - Java

  1. You could use IKVM.NET - http://www.ikvm.net/userguide/ikvmc.html

    On the official website in download - you can get ikvmbin-7.2.4630.5 (Works up to Java 7)

    However, on the owner's blog, you can download a newer version. http://weblog.ikvm.net/default.aspx - You can get ikvmbin-8.1.5717.0 (Works up to Java 8)

    To create dll/exe use:

    ikvmc hello.jar

  2. On the other hand, if you can edit .jar lib (you created it) you could use http://jni4net.com/ project.

Attributions

All content for this solution is sourced from the original question on Stackoverflow.

The content on this page is licensed under the Attribution-ShareAlike 4.0 International (CC BY-SA 4.0) license.

Content TypeOriginal AuthorOriginal Content on Stackoverflow
QuestiontimmygView Question on Stackoverflow
Solution 1 - JavaStephen CurialView Answer on Stackoverflow
Solution 2 - JavaRadView Answer on Stackoverflow
Solution 3 - JavaMaciej PulikowskiView Answer on Stackoverflow