hoe to use Runtime.getRuntime.exec
i am having a XL file in "D:\velu\JAVA\workspace" in this path with filename "Velu_12-23-2006.xls". i need to open this file using
Runtime.getRuntime().exec method.
i tried this in two ways as
1.Runtime.getRuntime().exec("Velu_12-23-2006.xls")
2. Runtime.getRuntime().exec("D:\velu\JAVA\workspace\Velu_12-23-2006.xls")
in both cases the IOException is thrown saying UNKNOWN SOURCE.
Plz, analyse this and teach me.

