[vtkusers] Strange behavior while loading VTK libraries from Java
kingvsk at aol.com
kingvsk at aol.com
Mon Jun 3 00:31:58 EDT 2013
Yes. I set LD_LIBRARY_PATH in my Linux Mint system. If I extend any of
the Java gui component then it works fine.
*
**My Configurations**:*
NetBeans Version: NetBeans IDE 7.2 (Build 201207171143)
Java: 1.7.0_04; Java HotSpot(TM) Client VM 23.0-b21
System: Linux version 3.2.0-23-generic running on i386; UTF-8; en_IN (nb)
On Saturday 01 June 2013 09:20 PM, Sebastien Jourdain wrote:
> Did you set the environment variable PATH or LD_LIBRARY_PATH or
> DYLD_LIBRARY_PATH to point to the directory with all the native
> libraries ?
>
>
> On Tue, May 28, 2013 at 11:22 PM, kingvsk at aol.com
> <mailto:kingvsk at aol.com> <kingvsk at aol.com <mailto:kingvsk at aol.com>> wrote:
>
> Hi all,
>
> Please check the following code. If the class extends jcomponent ,
> jbutton, jframe or any gui component then it works fine otherwise,
> it leads to unsatisfiedlinkerror.
>
> Any Idea on this...
>
> import javax.swing.JComponent;
> import vtk.vtkNativeLibrary;
>
> /**
> *
> * @author sathish
> */
> @SuppressWarnings("serial")
> public class Testing extends JComponent {
> // Load All VTK libraries...
>
> static {
> if (!vtkNativeLibrary.LoadAllNativeLibraries()) {
> for (vtkNativeLibrary lib : vtkNativeLibrary.values()) {
> if (!lib.IsLoaded()) {
> System.out.println(lib.GetLibraryName() + " not loaded");
> } else {
> System.out.println(lib.GetLibraryName() + " loaded");
> }
> }
> } else {
> System.out.println("All Libraries are loaded");
> }
> vtkNativeLibrary.DisableOutputWindow(null);
> }
>
> // Main method...
> public static void main(String[] args) {
> // Core Stuff goes here...
> System.out.println("VTK Stuff");
> }
> }
>
> --
> Sathish
>
>
> _______________________________________________
> Powered by www.kitware.com <http://www.kitware.com>
>
> Visit other Kitware open-source projects at
> http://www.kitware.com/opensource/opensource.html
>
> Please keep messages on-topic and check the VTK FAQ at:
> http://www.vtk.org/Wiki/VTK_FAQ
>
> Follow this link to subscribe/unsubscribe:
> http://www.vtk.org/mailman/listinfo/vtkusers
>
>
-------------- next part --------------
An HTML attachment was scrubbed...
URL: <http://www.vtk.org/pipermail/vtkusers/attachments/20130603/0b1e0fd5/attachment.htm>
More information about the vtkusers
mailing list