I am fiddling with calling c/c++ .dlls from Java. I had to drop the
.dll file in the ../j2sdk1.4.2\jre\bin directory in order for my
application to see it. Can I make an application level lib directory
and how do I point the application to it?
thx,
jla
> I am fiddling with calling c/c++ .dlls from Java. I had to drop the
> .dll file in the ../j2sdk1.4.2\jre\bin directory in order for my
> application to see it. Can I make an application level lib directory
> and how do I point the application to it?
DLL are searched in directories specified with the PATH-
environment-variable, so place your DLL in one of these
paths or extend the PATH-variable by the path the DLL is
residing in.
Regards, Lothar

Signature
Lothar Kimmeringer E-Mail: spamfang@kimmeringer.de
PGP-encrypted mails preferred (Key-ID: 0x8BC3CD81)
Always remember: The answer is forty-two, there can only be wrong
questions!
milo - 13 Sep 2004 13:57 GMT
> > I am fiddling with calling c/c++ .dlls from Java. I had to drop the
> > .dll file in the ../j2sdk1.4.2\jre\bin directory in order for my
[quoted text clipped - 7 lines]
>
> Regards, Lothar
Thanks! My forehead is getting flatter from recognizing the obvious. I
apologize for getting back so late. We were getting ready for the
hurricane.
jla