Christian Stewart
Christian Stewart

Reputation: 15519

Java .class File (Simple)

I am sort of new to java. How can I use a compiled .class file for programming? Or, how can I use a .net dll meant for java to program? What I am really trying to do is figure out how to use the .net java output from this project here: https://github.com/shtejv/ARDrone-Control-.NET

Thanks, Christian

Upvotes: 0

Views: 320

Answers (1)

Nofate
Nofate

Reputation: 2743

Those files in ARDrone_Java directory seem to be a JNI-wrapper for DLLs. Just add *.java to your source or put *.class in your CLASSPATH and use.

Upvotes: 1

Related Questions