Holas a todos tengo un problema para restaurar la base de datos desde netbeans en postgres
intente ejecutar el comando con cmd
String comando = "cmd /c C:/Program Files/PostgreSQL/9.1/bin/pg_restore -i -h localhost -p 5432 -U postgres -W ***** -d xxxxx -v "+file_sql;
System.out.println("comando"+comando);
try {
Runtime.getRuntime ().exec ( comando );
} catch (Exception e) {
}
pero no ejecuta nada :/ ni siquiera sale un error, no se si alguien podria ayudarme con una guia para manejar cmd desde netbeans
Gracias por su tiempo