I have a little java programme, that responsible for sending message via mobile phone, and which is a native programme on the PC. But we won't convert it to .net, but it can be execute via dos cmd like:

java jar my_send_message.jar -p 12345678 -m This is a testing message. 

How can the .net programme get used with this little programme? Thanks.

link|improve this question

75% accept rate
.NET Process.Start() or something similar? – ee. Dec 5 '11 at 4:26
feedback

1 Answer

up vote 2 down vote accepted

You could process invoke it, using Process, as detailed here: How To: Execute command line in C#, get STD OUT results

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.