Salve a tutti,
sto cercando di eseguire un comando esterno da "dos" tramite java, ma non succede proprio niente, non restituisce neanche errore.
Il codice č questo :

codice:
String comando ="vutil32 -extract -k 0 -v 0 -n "+numero_record_da_convertire+
				" \""+indirizzo_file_da_convertire+"\" > \""+indirizzo_file_convertito+"\"";
			 
				Runtime run = Runtime.getRuntime();
				Process pr = run.exec(comando);

				pr.waitFor();
Naturalmente se creo un file bat con lo stesso comando , e da java lancio il bat, tutto vā a buon fine. Io vorrei evitare quel bat.Sapreste aiutarmi ?

GRAZIE ANTICIPATAMENTE