Failed to load JavaHL Library

后端 未结 11 1900
既然无缘
既然无缘 2020-12-22 22:20

After updating to Snow Lion I started receiving these errors in Flash Builder / Eclipse when trying to use SVN:

Failed to load JavaHL Library.
These are the         


        
相关标签:
11条回答
  • 2020-12-22 22:48

    You may or may not need JavaHL depending on your OS. In addition to other suggestions just posting this here.

    enter image description here

    For other OS see this source: http://subclipse.tigris.org/wiki/JavaHL

    0 讨论(0)
  • 2020-12-22 22:48

    i tried every single solution available and finally for me the problem was:

    uninstall Native JavaHL 1.6
    
    install everything under Subclipse from this site:
    

    http://subclipse.tigris.org/update_1.10.x>

    0 讨论(0)
  • 2020-12-22 22:52

    On Kubuntu, my path to the library changed because of installing another Java version. Here's the whole picture, but in short:

    sudo apt-get install libsvn-java
    sudo find / -name libsvnjavahl-1.so
    

    The output from the last command could look like this, for example:

    /usr/lib/x86_64-linux-gnu/jni/libsvnjavahl-1.so

    This gives you the path, so you can add the following to your eclipse.ini:

    -Djava.library.path=/usr/lib/x86_64-linux-gnu/jni/
    
    0 讨论(0)
  • 2020-12-22 22:54

    For Eclipse/STS v3.9.X windows user, you may need to update your subclipse version.

    Go to Help > Install New Software > Click on Subclipse and edit the version from 1.6.X to 1.8.X

    This method also apply to those who encounter JavaHL not available. You can check whether JavaHL is available or not by Go to Windows > Preference > Team > SVN. You may check it in SVN Interface > Client section.

    If this work on MAC OS, kindly response in comment section. :)

    0 讨论(0)
  • 2020-12-22 22:57

    maybe you can try this: change jdk version. And I resolved this problem by change jdk from 1.6.0_37 to 1.6.0.45 . BR!

    0 讨论(0)
  • 2020-12-22 22:58

    Try this:

    1. Select Window >> Preferences
    2. Expand Team >> SVN
    3. Under SVN interface set Client to SVNKit (Pure Java) SVNKit....
    0 讨论(0)
提交回复
热议问题