Can you use Java libraries in a VB.net program? - Stack Overflow most recent 30 from stackoverflow.com 2009-11-28T21:20:00Z http://stackoverflow.com/feeds/question/152967 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/152967/can-you-use-java-libraries-in-a-vb-net-program 2 Can you use Java libraries in a VB.net program? David 2008-09-30T13:14:29Z 2009-10-31T18:41:03Z <p>I'm wondering if a Java library can be called from a VB.net application.</p> <p>(A Google search turns up lots of shady answers, but nothing definitive)</p> http://stackoverflow.com/questions/152967/can-you-use-java-libraries-in-a-vb-net-program/152980#152980 2 Answer by davidg for Can you use Java libraries in a VB.net program? davidg 2008-09-30T13:18:17Z 2008-09-30T13:18:17Z <p>No, you can't. Unless you are willing to use some "J#" libraries (which is not nearly the same as Java) or <a href="http://www.ikvm.net/" rel="nofollow">IKVM</a> which is a Java implementation that runs on top of .NET, but as their documentation says:</p> <blockquote> <p>IKVM.OpenJDK.ClassLibrary.dll: compiled version of the Java class libraries derived from the OpenJDK class library with some parts filled in with code from GNU Classpath and IcedTea, plus some additional IKVM.NET specific code. </p> </blockquote> <p>So it's not the real deal.</p> http://stackoverflow.com/questions/152967/can-you-use-java-libraries-in-a-vb-net-program/152983#152983 0 Answer by jop for Can you use Java libraries in a VB.net program? jop 2008-09-30T13:19:19Z 2008-09-30T13:19:19Z <p>Nothing out of the box.</p> <p>Most java/.net interop that I know uses web services.</p> http://stackoverflow.com/questions/152967/can-you-use-java-libraries-in-a-vb-net-program/152984#152984 1 Answer by Franci Penov for Can you use Java libraries in a VB.net program? Franci Penov 2008-09-30T13:19:21Z 2008-09-30T13:19:21Z <p>If you can create COM components with Java, you can use tlbimp to create an interop assembly for using in VB.Net.</p> <p>If can create standard DLLs that can be used from C++ with Java, you can write P/Invoke declarations and call them from VB.Net.</p> <p>If you can create a web service with Java, you can generate proxy class from the WSDL and call it from VB.Net.</p> <p>In any case, chances are the Java component will live in a separate process. I doubt you can load both the Java VM and the CLR in the same process.</p> http://stackoverflow.com/questions/152967/can-you-use-java-libraries-in-a-vb-net-program/152986#152986 1 Answer by Bart Read for Can you use Java libraries in a VB.net program? Bart Read 2008-09-30T13:19:37Z 2008-09-30T13:19:37Z <p>If you have the source code and compile it using the J# compiler, then the answer is yes. If you want to call any pre-Java 2 (aka 1.2) libraries, then these are included pretty much verbatim with J#. More recent stuff is going to be tricky though (i.e., it's not there).</p> <p>An example where this is used commercially are the yFiles graph layout algorithms from <a href="http://www.yworks.com/en/index.html" rel="nofollow">yWorks</a>. These were originally just a Java library, but for the past few years they've been offering a .NET version, which is just the Java version compiled with Visual J#.</p> <p>It's not without problems, and there are some limitations that you can't get around, but it can be done. So... unfortunately this answer looks pretty shady as well.</p> http://stackoverflow.com/questions/152967/can-you-use-java-libraries-in-a-vb-net-program/152991#152991 1 Answer by kiril.popov for Can you use Java libraries in a VB.net program? kiril.popov 2008-09-30T13:20:09Z 2008-09-30T13:20:09Z <p>You can call Java from .NET if you wrap it in some form to make it accessable and the easiest way is typically to use a Runtime bridge like </p> <p><a href="http://www.jnbridge.com/" rel="nofollow">http://www.jnbridge.com/</a> </p> <p>Other way is to wrap your API with java webservices.</p> <p>check this also <a href="http://www.devx.com/interop/Article/19945" rel="nofollow">http://www.devx.com/interop/Article/19945</a></p> http://stackoverflow.com/questions/152967/can-you-use-java-libraries-in-a-vb-net-program/152993#152993 0 Answer by Mario Ortegón for Can you use Java libraries in a VB.net program? Mario Ortegón 2008-09-30T13:20:47Z 2008-09-30T13:20:47Z <p>You could use JNI to instantiate a virtual machine and then use Java Classes. It will be some fun, though, because you would need to use C++ as a bridge between VB.Net and Java.</p> <p>This article in java world has a quick tutorial on how to use Java from C++ and viceversa.</p> <p><a href="http://www.javaworld.com/javaworld/javatips/jw-javatip17.html" rel="nofollow">http://www.javaworld.com/javaworld/javatips/jw-javatip17.html</a></p> http://stackoverflow.com/questions/152967/can-you-use-java-libraries-in-a-vb-net-program/153005#153005 0 Answer by StingyJack for Can you use Java libraries in a VB.net program? StingyJack 2008-09-30T13:24:41Z 2008-09-30T13:24:41Z <p>If you have the source, Visual Studio will let you convert Java code into c#.</p> http://stackoverflow.com/questions/152967/can-you-use-java-libraries-in-a-vb-net-program/1655221#1655221 0 Answer by Pavel Savara for Can you use Java libraries in a VB.net program? Pavel Savara 2009-10-31T18:41:03Z 2009-10-31T18:41:03Z <p>I am author of <a href="http://jni4net.sf.net/" rel="nofollow">jni4net</a>, open source interprocess bridge between JVM and CLR. It's build on top of JNI and PInvoke. No C/C++ code needed. I hope it will help you.</p>