Boa tarde!
Alguem ai saberia como eu posso chamar um arquivo .XLS no Linux.
No Windows eu faço o seguinte:
String[] cmd = new String[4];
cmd[0] = "cmd.exe";
cmd[1] = "/C";
cmd[2] = "start";
cmd[3] = "Meu_Arquivo.xls";
Runtime.getRuntime().exec(cmd);
Tentei faze algo parecido no linux, mas nao obtive sucesso!:
String[] cmd = new String[3];
cmd[0] = "/bin/sh";
cmd[1] = "-c";
cmd[3] = "Meu_arquivo.xls";
Runtime.getRuntime().exec(cmd);
Alguem ai saberia como me ajudar!??
Desde ja aGradeco!