problem opening a file from Runtime.exec()
hi
I'm trying to open a certificate (.cer), from my java code.
If I go on a windows command, and I type only the name of my certificate ( f:\certificate.cer), it is opened.
If I use the java code
Process process = Runtime.getRuntime().exec("F:\\certificate.cer");
it doesn't work:
java.io.IOException: CreateProcess: "f:\oid.crt" error=193
anybody knows what I can do to make it work?
Thanks in advance
Philippe

