I am working on a project on Raspberry PI on Java. We need to show some web pages on the application, so we need a web browser component.
We tried to get WebView
from JavaFX
, but its not available for embedded devices. Therefore, we tried to build JavaFX
with WebView
, but it throws a lot of errors on the build. The final error was that it was missing the package libxml2-dev
.
The second attempt was on the DJ native swing, which has a web browser component. So we used it and installed all sorts of dependencies but it throws a SWTException
saying no more handles and no MOZILLA_FIVE_PATH
variable exist.
Is there a way to show web pages on the Raspberry PI?