Click here to Skip to main content
15,896,201 members
Articles / Desktop Programming / Win32

How to Call Java Functions from C Using JNI

Rate me:
Please Sign up or sign in to vote.
4.47/5 (35 votes)
12 Jan 2008CPOL3 min read 432.2K   8K   46  
This article covers calling Java functions from C using JNI. It also covers passing/returning simple parameters, arrays, and structure arrays in Java functions.
public class WorkOrder
{
	String		sumSerialId;	
	String		accessNumber;
	String		actionType;
	String		effectiveDate;
	String		fetchFlag;
	String		reason;
	String		accessSource;
	public WorkOrder(String szSumID,String szAccNum, String szActType, String szEffectDate, String fetchFlg, String szReason, String szAccSrc )
	{
		this.sumSerialId = szSumID;
		this.accessNumber = szAccNum;
		this.actionType = szActType;
		this.effectiveDate = szEffectDate;
		this.fetchFlag = fetchFlg;
		this.reason = szReason;
		this.accessSource = szAccSrc;			
	}	
};

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, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)


Written By
Software Developer (Senior)
United Kingdom United Kingdom
Ahmad Qarshi is an IT Consultant and have good expertise in different development technologies. He loves to code in .NET, JavaFX, Delphi, XSLT/Schematron. Above all very keen to learn new stuff Smile | :)

Comments and Discussions