Java Posix IPC Is there an API?

ipc, java, unix

Solution

A bit of Googling found Posix for Java.

Problem

I'm wondering if I can access to a Posix Message Queue in Java as I have an application that can't be modified and uses a message queue to talk to other processes. Is there any api or package that do that? I know that I can use JNI but I need to do this ASAP so no time to develop that. Regards.

Original source

Related problems