I'm writing a bit of JNI code where a DLL running in the process space of various processes on the system needs to talk back to a java process. I've decided to use named pipes to do this (for various reasons) after weighing up shared mem/sockets/rpc etc. My question is, is there a nice way of handling named pipes in Java or should I write one?
|
|
|
|
|
|
|
Assuming that you're running on Unix, can't you just create the pipe with exec and then read and write with a File*Stream?
|
||||
|
|
|
I used to do process communication via the Process's input and output stream: For e.g.
Similarly you can use inputstreams to read what the other process has to say to you. |
||
|
|
