posted 18 years ago
I don't think we can achieve IPC using Pipes and shared memory in java.
Because you don't have any control over the memory management in java.
moreover unlike C++, we have 2-level referencing in java, so even if you somehow find a memory address to write the data, it won't be actual memory address where the data will be stored.
You can achieve through other means like sockets