Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I'm trying to integrate JNA into JDK 1.3 application. JNA pages have following on this subject:

Supported on 1.4 or later JVMs (earlier VMs may work with stubbed NIO support)

I've managed to port JNA sources to JDK 1.3 by dropping all java.nio references. I do not need for example java.nio.Buffer.

However, JNA DLLs are compiled to use Java NIO types and complain accodingly:

JNA: Problems loading core IDs: java.nio.Buffer

What do I need to do to make JNA work in JDK 1.3? What does this " may work with stubbed NIO support" mean?

Is my only option to stub NIO from C source code and recompile DLL? Since I'm not good at C programming at all, I'm desperately trying to avoid it.

Is there some other way to call native DLL in Java (not JNI, called DLL's are closed source and JNI incompatible).

share|improve this question
2  
I wonder if by stubbed NIO support they mean simply to create your own java.nio classes with method stubs for the NIO class methods that are needed by the compiler (methods that of course you can not use). I doubt that you need to write C code for this. – Hovercraft Full Of Eels May 22 '11 at 16:41

2 Answers

up vote 5 down vote accepted

The docs are proposing that you write some fake java.nio classes, and put them on the bootclasspath -- and then don't use anything that requires java.nio. You're not expected to modify the JNA source or edit the native code.

share|improve this answer
2  
upvoted.In addition to this answer-you probably don't need to change any native c code. either do what this answer proposes or try using this version of JNA java.net/jira/browse/JNA-108 . The author stripped out NIO so you don't have to. – Abhijith May 22 '11 at 17:07
Great. Thanks, I'll give it a shot. – Jiri Jansa May 23 '11 at 6:44

JDK 1.3? That's ridiculously out of support, unless you're running on Solaris 8. EOL started seven years ago and was complete when JDK 6 became available on 6-Nov-2006. That's almost five years back.

Personally, I think your efforts would be better spent porting the code to a more modern JDK. JNA is telling you that it requires NIO. I'd heed the call and port away from JDK 1.3.

share|improve this answer
The Collections API was introduced in JDK 1.2 . – Ernest Friedman-Hill May 22 '11 at 16:48
Not the version with generics. It doesn't change the point. Are you arguing in favor of sticking with JDK 1.3? I think that's crazy. – duffymo May 22 '11 at 16:50
I'm assuming he has some reason to use 1.3 -- perhaps, like you say, to run on Solaris 8, or some other old OS. In any case, you didn't say 1.3 doesn't have generics, you said it doesn't have Collections, which it definitely does. – Ernest Friedman-Hill May 22 '11 at 16:52
Got me there, EFH. You are absolutely correct, and your down vote is warranted. I don't have a problem with that. As you can see, I've edited my incorrect answer to reinforce your point. But the rest still stands. – duffymo May 22 '11 at 16:56
Reversed downvote as misstatement corrected. – Ernest Friedman-Hill May 22 '11 at 17:33
show 1 more comment

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.