The Microsoft way | CodeGuru

The Microsoft way

Bruce Eckel’s Thinking in Java Contents | Prev | Next At the time of this writing, Microsoft does not support JNI, but provides proprietary support to call non-Java code. This support is built into the compiler, the Microsoft JVM, and external tools. The features described in this section will work only if your program was […]

Written By
CodeGuru Staff
CodeGuru Staff
Mar 1, 2001
1 minute read
CodeGuru content and product recommendations are editorially independent. We may make money when you click on links to our partners. Learn More

At


the time of this writing, Microsoft does not support JNI, but provides


proprietary support to call non-Java code. This support is built into the


compiler, the Microsoft JVM, and external tools. The features described in this


section will work only if your program was compiled using the Microsoft Java


compiler and run on the Microsoft Java Virtual Machine. If you plan to


distribute your application on the Internet, or if your Intranet is built on


different platforms, this can be a serious issue.

The


Microsoft interface to Win32 code provides three ways to connect to Win32:

  1. J/Direct:
    A way to easily call Win32 DLL functions, with some limitations.
  2. Raw
    Native Interface (RNI)
    :
    You can call Win32 DLL functions, but you must then handle garbage collection.
  3. Java/COM
    integration
    :
    You can expose or call COM services directly from Java.

I’ll


cover all three techniques in the following sections.

At


the time of writing, these features were tested on the Microsoft SDK for Java


2.0 beta 2, which was downloaded (with a painful process they call


“Active Setup”) from the Microsoft Web site. The Java SDK is a set


of command-line tools, but the compilation engine can be easily plugged into


the Developer Studio environment, allowing you to use Visual J++ 1.1 to compile


Java 1.1 code.


Contents

|

Prev

|

Next
CodeGuru Logo

CodeGuru covers topics related to Microsoft-related software development, mobile development, database management, and web application programming. In addition to tutorials and how-tos that teach programmers how to code in Microsoft-related languages and frameworks like C# and .Net, we also publish articles on software development tools, the latest in developer news, and advice for project managers. Cloud services such as Microsoft Azure and database options including SQL Server and MSSQL are also frequently covered.

Property of TechnologyAdvice. © 2026 TechnologyAdvice. All Rights Reserved

Advertiser Disclosure: Some of the products that appear on this site are from companies from which TechnologyAdvice receives compensation. This compensation may impact how and where products appear on this site including, for example, the order in which they appear. TechnologyAdvice does not include all companies or all types of products available in the marketplace.