is it possible to run java app on linux (with installed java and etc) server with this execution of a command inside the java application?
System.load("path to .dll");
And..
http://www.mono-project.com can help me do my task for this application?
DLLs are Windows-specific native libraries. You cannot normally use a Windows DLL on a non-Windows operating system such as Linux. You’ll need to have a Linux version of the DLL; this normally has the extension
.so.The Mono project is an open-source implementation of Microsoft’s .NET framework that runs on Linux (and other non-Microsoft operating systems). It does not help you to run arbitrary DLLs on non-Windows operating systems.