Click here to Skip to main content
15,881,204 members
Articles / Containers / Virtual Machine

Using Memory Mapped Files and JNI to communicate between Java and C++ programs

Rate me:
Please Sign up or sign in to vote.
4.90/5 (28 votes)
18 Jun 20028 min read 200.3K   2.7K   68  
An article on inter-process communication between Java and Java, Java and C++ programs.
package com.stanley.memmap;

/**
 * <p>Title: </p>
 * <p>Description: </p>
 * <p>Copyright: Copyright (c) 2002</p>
 * <p>Company: </p>
 * @author Stanley  Wang
 * @version 1.0
 */

public interface MemMapFileObserver {
  public void onDataReady();
}

By viewing downloads associated with this article you agree to the Terms of Service and the article's licence.

If a file you wish to view isn't highlighted, and is a text file (not binary), please let us know and we'll add colourisation support for it.

License

This article has no explicit license attached to it but may contain usage terms in the article text or the download files themselves. If in doubt please contact the author via the discussion board below.

A list of licenses authors might use can be found here


Written By
Web Developer
United States United States
Stanley Wang is a Software Development Engineer at Amazon.com. Before he joined Amazon, he was a Lead Software Developer at Vcom3D, Inc. He is the author of JTL (An open sourced JNI C++ template library, http://sourceforge.net/projects/jtl/).

Stanley received his Master's Degree in Computer Science from University of Florida. He is interested in System Programming, Generic Programming, Database Systems and Computer Graphics.

Comments and Discussions