I want to know how can I execute external softwares from within my java code.Actually what my java code does is that it takes a voice input from user and converts it into a .wav file.Then it has to execute a external software that that takes two wav files and returns the percentage similiarity between them.
The part upto saving the user voice input as a .wav file is done.Now I need to know how can i get my code to :
(i) Start and run the software.
(ii)Make the two wav files available to the software for its execution.
(iii)Take the result (percentage similiarity) from the software and print it on the screen or save it in variable.
For me this is really complex so awaiting responese from all of you.
Thanks in advance.
The part upto saving the user voice input as a .wav file is done.Now I need to know how can i get my code to :
(i) Start and run the software.
(ii)Make the two wav files available to the software for its execution.
(iii)Take the result (percentage similiarity) from the software and print it on the screen or save it in variable.
For me this is really complex so awaiting responese from all of you.
Thanks in advance.
Comment