JACOB和JRE 1.7出现UnsatisfiedLinkError

JACOB和JRE 1.7出现UnsatisfiedLinkError,第1张

JACOB和JRE 1.7出现UnsatisfiedLinkError

我找到了一个晒太阳程序员写的了不起的帖子,解决了我的问题!

public static void addDir(String s) throws IOException {    try {        // This enables the java.library.path to be modified at runtime        // From a Sun engineer at http://forums.sun.com/thread.jspa?threadID=707176        Field field = ClassLoader.class.getDeclaredField("usr_paths");        field.setAccessible(true);        String[] paths = (String[])field.get(null);        for (int i = 0; i < paths.length; i++) { if (s.equals(paths[i])) {     return; }        }        String[] tmp = new String[paths.length+1];        System.arraycopy(paths,0,tmp,0,paths.length);        tmp[paths.length] = s;        field.set(null,tmp);        System.setProperty("java.library.path", System.getProperty("java.library.path") + File.pathSeparator + s);    } catch (IllegalAccessException e) {        throw new IOException("Failed to get permissions to set library path");    } catch (NoSuchFieldException e) {        throw new IOException("Failed to get field handle to set library path");    }}

然后我在使用JACOB方法之前添加

addDir("C:" + File.separator + "java" + File.separator + "jre7" + File.separator + "lib")

像魅力一样工作。



欢迎分享,转载请注明来源:内存溢出

原文地址:https://54852.com/zaji/5016952.html

(0)
打赏 微信扫一扫微信扫一扫 支付宝扫一扫支付宝扫一扫
上一篇 2022-11-15
下一篇2022-11-14

发表评论

登录后才能评论

评论列表(0条)

    保存