Announcement

Collapse
No announcement yet.

Java Problems [I think]

Collapse
This topic is closed.
X
X
 
  • Filter
  • Time
  • Show
Clear All
new posts

    Java Problems [I think]

    Hello all,

    I downloaded a program for viewing digital X-ray images using Muon package manager, it's called Dicomscope. It used to work fine, but now when I run it I get the following error

    Code:
    :~$ dicomscope                                                                                                                                                                                                    
    starting DICOMscope                                                                                                                                                                                                                                
    please wait...                                                                                                                                                                                                                                     
    Exception in thread "main" java.lang.UnsatisfiedLinkError: no jInterface in java.library.path                                                                                                                                                      
            at java.lang.ClassLoader.loadLibrary(ClassLoader.java:1886)                                                                                                                                                                                
            at java.lang.Runtime.loadLibrary0(Runtime.java:849)                                                                                                                                                                                        
            at java.lang.System.loadLibrary(System.java:1088)                                                                                                                                                                                          
            at main.MainContext.<clinit>(MainContext.java:58)                                                                                                                                                                                          
            at dicomscope.DICOMscope.main(DICOMscope.java:91)
    Can anyone tell me what this means, and what I need to do to fix it?

    Thanks for your help I really appreciate it.

    Jason

    #2
    Google found a related report in Debian bug 731778. No real resolution other than to run it with this:

    java -Djava.library.path=/usr/lib/x86_64-linux-gnu/jni -jar /usr/bin/dicomscope

    Comment


      #3
      Cool, thanks for this!

      Jason

      Comment

      Working...
      X