I can't run b4j app on Raspberry Pi3??
my OS:Ubuntu MATE for Raspberry Pi 3
I have install javafx.....Below is my code
After the install javafx, the message
run a JavaFX application,it show bug message
"Missing javafx actual execution components needed to execute this application"
my OS:Ubuntu MATE for Raspberry Pi 3
I have install javafx.....Below is my code
- #!/bin/bash
- if [ ! -e armv6hf-sdk-8.60.9.zip ]; then
- wget http://download.gluonhq.com/javafxports/embedded/armv6hf-sdk-8.60.9.zip
- fi
- if [ ! -d armv6hf-sdk ]; then
- unzip armv6hf-sdk-8.60.9.zip
- fi
- # JRE_PATH=/usr/lib/jvm/jdk-8-oracle-arm32-vfp-hflt/jre
- JRE_PATH=/opt/jdk1.8.0_171/jre
- cp armv6hf-sdk/rt/lib/ext/jfxrt.jar ${JRE_PATH}/lib/ext/
- cp armv6hf-sdk/rt/lib/arm/* ${JRE_PATH}/lib/arm/
- cp armv6hf-sdk/rt/lib/javafx.platform.properties ${JRE_PATH}/lib/
- cp armv6hf-sdk/rt/lib/javafx.properties ${JRE_PATH}/lib/
- cp armv6hf-sdk/rt/lib/jfxswt.jar ${JRE_PATH}/lib/
- exit 0
After the install javafx, the message
run a JavaFX application,it show bug message
"Missing javafx actual execution components needed to execute this application"
Last edited: