salve a tutti ho scritto il seguente codice per creare un collegamento ad una directory.
questo funziona bene per windows.
Runtime r = Runtime.getRuntime();
Process d = null;
try {
d = r.exec (new String[] { "cmd", "/C", "start", ,mioPath});
} catch (IOException ex) {
ex.printStackTrace();
}catch (ArrayIndexOutOfBoundsException ex) {}
quale comando dovrei usare per fare lo stesso su Linux.
grazie...

Rispondi quotando