vote up 0 vote down star

Suppose i execute a command in java using the exec() function and i store the reference in a Process . How do i write into the input stream of that process

Process P = Runtime.getRuntime().exec("cmd /c start telnet"); 
System.out.println("done running .."); 
OutputStream output = P.getOutputStream(); 
BufferedOutputStream out = new BufferedOutputStream(output); 
String S = "open\n"; 
byte[] BS = S.getBytes(); 
out.write(BS); out.close();

I had done that but its not workin.......... above is my code attached

flag

4 Answers

vote up 0 vote down

I don't think you need the cmd /c bit in your exec call. Since exec itself will spawn a shell for you. Regardless, process handling in Java is a real pain. If you can I suggest you use the Apache exec package. It handles a lot of the low level pain for you.

link|flag
vote up 0 vote down

Process P = Runtime.getRuntime().exec("cmd /c start telnet"); \ System.out.println("done running .."); OutputStream output = P.getOutputStream(); BufferedOutputStream out = new BufferedOutputStream(output); String S = "open\n"; byte[] BS = S.getBytes(); out.write(BS); out.close();

I had done that but its not workin ......above is my code attached

link|flag
vote up 1 vote down

Seems like you actually want the Process' OutputStream, because you want to send data to the process (unless I misunderstood your question).

Here is an example.

link|flag
Its possible he wants to write to the input stream to simulate user input. – theycallmemorty Nov 4 at 14:51
vote up 1 vote down

You write to the output stream not the input stream:

Process p = Runtime.getRuntime().exec(..);
OutputStream os = p.getOutputStream();
BufferedWriter bos = new BufferedWriter(new OutputStreamWriter(os));
bos.write("whatever u want");
link|flag
Process P = Runtime.getRuntime().exec("cmd /c start telnet"); System.out.println("done running .."); OutputStream output = P.getOutputStream(); BufferedOutputStream out = new BufferedOutputStream(output); String S = "open\n"; byte[] BS = S.getBytes(); out.write(BS); out.close(); I had done that but its not workin above is my code attache – Akash Nov 4 at 14:47
Did you try with BufferedWriter – Suraj Chandran Nov 4 at 15:16
Maybe if starting from Windows and sending the command to UNix, the \n after open may create some problem – Suraj Chandran Nov 4 at 15:17

Your Answer

Get an OpenID
or

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