Hola tengo hecho el siguiente código:
void Copia_actionPerformed(ActionEvent e) {
try {
Runtime r = Runtime.getRuntime();
String s = "cmd /c copy " + this.jTextField1.getText() + " " + this.jTextField2.getText();
System.out.println(s);
r.exec(s);
}
catch (Exception exc) {
JOptionPane.showMessageDialog(this, exc.getMessage(),
"Copia Seguridad", JOptionPane.INFORMATION_MESSAGE);
}
}
Pero no me realiza nada, ni me da errores. ¿Alguien sabe por qué no funciona?
Muchas gracias.