Can you use Java libraries in a VB.net program?

后端 未结 8 1952
青春惊慌失措
青春惊慌失措 2020-12-03 16:36

I\'m wondering if a Java library can be called from a VB.net application.

(A Google search turns up lots of shady answers, but nothing definitive)

8条回答
  •  渐次进展
    2020-12-03 16:47

    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

    http://www.jnbridge.com/

    Other way is to wrap your API with java webservices.

    check this also http://www.devx.com/interop/Article/19945

提交回复
热议问题