I want to use a Microsoft .Net Assembly in a Java Application. Is there any way out to do that.
Any help will be appreciated.
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
Java and .Net run an fundamentally different systems: the JVM and CLR respectively. It’s not possible to directly load one into the other and use it. They are incompatible formats.
It is possible though to have .Net and Java components interact through a bridge layer. There are several out there which provide this behavior
Note: Most of these solutions though are aimed at sharing well defined components as opposed to directly loading libraries. This may or may not work for you.