How can i get JavaFX working on raspberry pi 3

寵の児 提交于 2019-11-29 07:45:16

If you have read the documentation here, under 2.1.4 Prerequisites for Embedded:

  1. Download the latest version of JDK 8 for ARM to your embedded device, available from here. You will have to download this file: http://download.oracle.com/otn-pub/java/jdk/8u91-b14/jdk-8u91-linux-arm32-vfp-hflt.tar.gz

You can download it to your computer first, and then move it to the Pi, or directly download it from the Raspberry Pi, unzip and install.

  1. Download the latest version of the JavaFX Embedded SDK port, available here, and copy to your Pi. Unzip the downloaded JavaFX Embedded SDK and copy the following files into the JDK 8 installation directory:

    • armv6hf-sdk/rt/lib/ext/jfxrt.jar --> jre/lib/ext/
    • armv6hf-sdk/rt/lib/arm/* --> jre/lib/arm/
    • armv6hf-sdk/rt/lib/javafx.platform.properties --> jre/lib/
    • armv6hf-sdk/rt/lib/javafx.properties --> jre/lib/
    • armv6hf-sdk/rt/lib/jfxswt.jar --> jre/lib/

You can deploy JavaFX projects on your Pi directly copying them from your computer, or using the remote deployment available with NetBeans (Remote Platform) or with the Gluon Plugin for your IDE.

For a short guide on creating a remote platform on NetBeans, check this link. For the Gluon Plugin, check these settings.

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!