Running defualt applications
Hello everyone,
I am writing a simple file browser and I have a small question. I would like to luanch an application when someone double clicks on an icon that is a file, and to luanch the defualt application for that file type. I have got this working in Windows via :
Runtime.getRuntime().exec("rundll32 SHELL32.DLL,ShellExec_RunDLL " + FILEPATH)
I would like to have the same simple call like above for Unix and linux systems too. Is there something like this for those systems or an I going to have to find another route?
Thank you all,
dunnigan

