JVM launcher : fatal error

Collapse
X
 
  • Time
  • Show
Clear All
new posts
  • EKTAGOEL
    New Member
    • Sep 2007
    • 4

    #1

    JVM launcher : fatal error

    I am working on JNI, Unsatisfied LInk error is generated when control goes to native method. Working on WInXp

    What should be the cause.???

    Thanks in advance.
  • r035198x
    MVP
    • Sep 2006
    • 13225

    #2
    Originally posted by EKTAGOEL
    I am working on JNI, Unsatisfied LInk error is generated when control goes to native method. Working on WInXp

    What should be the cause.???

    Thanks in advance.
    If you are calling System.loadLibr ary then look up the API docs page for it and see the reason why that exception may be thrown.

    Comment

    • EKTAGOEL
      New Member
      • Sep 2007
      • 4

      #3
      what do you mean by api docs page

      Comment

      • JosAH
        Recognized Expert MVP
        • Mar 2007
        • 11453

        #4
        Originally posted by EKTAGOEL
        what do you mean by api docs page
        You're not telling us that you simply guessed right on how to use the System.loadLibr ary()
        method, do you? You must've read the API in some documentation.

        kind regards,

        Jos

        ps: you either have:

        1) not loaded your library at all;
        2) the loading of the library failed;
        3) the wanted method is not in the library.

        Comment

        Working...