문제

I'm using Install4j to create a installer of a JavaFx application for OSX and it must include a bundle JRE (jre 1.7_0_51). I need to move the file /lib/jfxrt.jar to /lib/ext/jfxrt.jar to force Java to load the JavaFX libs.

Is there a way to do this?

UPDATE:

I've forget to add a little info about the bundle, the file jfxrt.jar is inside the bundle.

도움이 되었습니까?

해결책

In install4j, you can use a "Move files and directories" action to move a file.

다른 팁

run this:

$: mkdir /lib/ext
$: mv /lib/jfxrt.jar /lib/ext/jfxrt.jar
라이센스 : CC-BY-SA ~와 함께 속성
제휴하지 않습니다 StackOverflow
scroll top