Hola tengo hecho el siguiente código:
void Copia_actionPerformed(ActionEvent e) {
try {
Runtime r = Runtime.getRuntime();
String s = "copy " + this.jTextField1.getText() + " " + this.jTextField2.getText();
r.exec(s);
}
catch (Exception exc) {
JOptionPane.showMessageDialog(this, exc.getMessage(),
"Copia Seguridad", JOptionPane.INFORMATION_MESSAGE);
}
}
Pero me da este error:
create process copy error = 2.
¿Alguien me puede ayudar?
Muchas gracias.