i have a web based j2ee application. is there any way to use .dll file in it.
Share
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.
Yes, you can just use JNI /
System#loadLibrary()the same way as you would do in a normal Java application. You only need to realize that this runs at the server side, not at the client side. If your intent is to run this at the client side, then you need to serve it in flavor of an applet or webstart application.