What command we have to execute (from Java, but that should not matter) on Linux (different common distributions) to open a given URL in the default browser?
Tell me more
×
Stack Overflow is a question and answer site for
professional and enthusiast programmers. It's 100% free, no registration required.
|
The most cross-distribution one is |
|||||
|
|
At least on Debian and all its derivatives, there is a 'sensible-browser' shell script which choose the browser best suited for the given url. |
|||
|
|
|
on ubuntu you can try gnome-open. $ gnome-open http://www.google.com |
|||
|
|
|
In Java (version 6+), you can also do:
Though this won't work on all Linuxes. At the time of writing, Gnome is supported, KDE isn't. |
|||
|
|
I think a combination of xdg-open as described by shellholic and - if it fails - the solution to finding a browser using the [1] http://www.mkyong.com/java/open-browser-in-java-windows-or-linux/ |
|||
|
|