I have a Java application that uses the JFlashPlayer libraries. I can run it on my system, via a batch file, with no problems - it runs perfectly, as expected. The .bat
file is as follows:
java -classpath jflashplayer.jar;commons-io-2.4.jar;bin flashPresentationController
As mentioned previously, the application runs without issue on my computer, but when trying to run it on another computer, the following error occurs:
Exception in thread "AWT-EventQueue-0" java.lang.UnsatisfiedLinkError: com.jpackages.jflashplayer....
I was having this exact same error when trying to package the application in an executable JAR file, but the batch file always worked without error. How can I remedy this issue so that I can either a) use the existing batch file to run the application, or b) package the whole application in an executable JAR file?
I've tried changing paths of the included libraries and files, as per the suggestions of other posts relating to UnsatisfiedLinkError, but nothing changed.