Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

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?

share|improve this question

5 Answers

up vote 17 down vote accepted

The most cross-distribution one is xdg-open http://stackoverflow.com

share|improve this answer
2  
Unfortunately not present in RHEL – Ondra Žižka Mar 12 '11 at 14:48

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.

http://man.he.net/man1/sensible-browser

share|improve this answer

on ubuntu you can try gnome-open.

$ gnome-open http://www.google.com

share|improve this answer

In Java (version 6+), you can also do:

Desktop d = Desktop.getDesktop();
d.browse(uri);

Though this won't work on all Linuxes. At the time of writing, Gnome is supported, KDE isn't.

share|improve this answer
Half of the system not supported, isn't really worth mentioning it. There are reasons why Linux on the Desktop is not getting more then 1% user share. IT SUCKS. – Lothar Dec 28 '12 at 18:15

I think a combination of xdg-open as described by shellholic and - if it fails - the solution to finding a browser using the which command as described here [1] is probably the best solution.

[1] http://www.mkyong.com/java/open-browser-in-java-windows-or-linux/

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.