dear biojava associates,
i am somewhat new to java.
my problem is that i have an exe( i have only binaries ) application which
actually takes some command line arguments but i dont want to access the
application through the command line instead my need is to give those
arguments through java code
Hi Matthew and Thomas,
Thanks for a fantastic Bootcamp!
It would be nice for us if the class
bio.seq.io.FeatureTableParser were
public and not package scope, as we
have a class that inherits its
functionality.
cheers, Martin.
___
Biojava-l mailing li
Hi,
I did this once and it seems to work in most (but not all) cases, at least
on a windows platform, probably works better on unix.
You need to obtain a process by doing something like:
String "c:\program.exe"
Runtime r = Runtime.getRuntime();
Process p = r.exec(command); // there are lots of