|
The jar package is placed in the classpath, and the swt dll file needs to be placed in the path environment variable so that it can be called by JNI.
Such as Windows
set classpath=%classpath%;myapp.jar
set path=%path%;swt_xx.dll
java xx.xx.xxx
That's it |
|