Reading shared memory data using Java written in C ++

I have an application in C / C ++ that writes data to shared memory on Unix. Now I want to read shared memory data through a program using Java.

The program should read shared memory data. Is it possible?

A small implementation needs to be done, if possible.

+6
source share
1 answer

Take a look at this codeproject project (for Windows):

Using files with memory and JNI to exchange data between Java and C ++ programs

Or, this library :

CLIPC is an open source Java library that provides developers with interprocess communication (IPC) capabilities that may be absent or difficult to use in Java distribution.

+5
source

All Articles