LabVIEW

cancel
Showing results for 
Search instead for 
Did you mean: 

Help with LabView and Java

Hi any help would be greatly appreciated: I have the following JAVA code:
 
//File: Hello.java
class Hello {
 public native void Steve();
 static {
  System.loadLibrary("steve");
 }
 public static void main(String[] args) {
  Hello h = new Hello();
  h.Steve();
 }
}
 
It finds the loadLibrary fine, but I get the following error message:
 
 

Exception in thread "main" java.lang.UnsatisfiedLinkError: Steve

at Hello.Steve(Native Method)

at Hello.main(Hello.java:10)

 

 

0 Kudos
Message 1 of 2
(2,509 Views)
Okay......
Where does Labview fit into this question?Smiley Indifferent
0 Kudos
Message 2 of 2
(2,476 Views)