i hope caps lock haters are now pleased and in paradise. as you can see, all letters are small. enjoy yourself.
anyway, i have a question about java. i have application written in java which uses some external libraries (jansi, and jline to be exact).
i am writing application in windows which is 64 bit, and i compile it, and create a build (clean and build in net beans), and start my application in the same windows i used to build it, and it works fine.
external libraries contain native code (for example jline contains code which calls some dll files (jline library has jline32.dll and jline64.dll files)).
both files are present in library folders, and it works on my 64 bit windows.
and my question is, if i wish to run the same application on 32 bit windows, what do i need to do?
do i need to build it on 32 bit windows so that jline uses 32 bit jline dll, or do i need to do something else? or do i not need to do anything.
i mean, my application does not use this dlls. they are used internally by jline library.
okay, thanx for reading.