I need to open a link in my web browser using Java, but the stipulation is that I can't use java.awt.Desktop
to do it. The reason why is because I'm trying to do this from an LWJGL3 program, and using AWT in its context will cause the program to not work on Mac systems.
So basically, I need the functionality of Desktop.browse(URL)
without AWT. Does anyone know of some third party application or something I can use that can do this (or how I can potentially do it myself).
Thank you!