62,636
社区成员




com.melloware.jintellitype.JIntellitypeException: Could not load JIntellitype.dll from local file system or from inside JAR
at com.melloware.jintellitype.JIntellitype.<init>(JIntellitype.java:114)
at com.melloware.jintellitype.JIntellitype.getInstance(JIntellitype.java:177)
at QuickAll.AllView.<init>(AllView.java:49)
at QuickAll.AllView.main(AllView.java:35)
Caused by: java.io.IOException: FromJarToFileSystem could not load DLL: com/melloware/jintellitype/JIntellitype64.dll
at com.melloware.jintellitype.JIntellitype.fromJarToFs(JIntellitype.java:150)
at com.melloware.jintellitype.JIntellitype.<init>(JIntellitype.java:109)
... 3 more
Caused by: java.io.IOException: Could not delete file: C:\Users\ADMINI~1\AppData\Local\Temp\JIntellitype64.dll
at com.melloware.jintellitype.JIntellitype.fromJarToFs(JIntellitype.java:138)
... 4 more
// 第一步:注册热键,第一个参数表示该热键的标识,第二个参数表示组合键,如果没有则为0,第三个参数为定义的主要热键
JIntellitype.getInstance().registerHotKey(1, JIntellitype.MOD_CONTROL,
(int) 'S');
// 第二步:添加热键监听器
JIntellitype.getInstance().addHotKeyListener(new HotkeyListener() {
public void onHotKey(int markCode) {
AllView.this.setVisible(true);
}
});
Could not delete file: C:\Users\ADMINI~1\AppData\Local\Temp\JIntellitype64.dll
然后你的开发环境又尝试区加载本地系统的dll,和jar包中的dll、
Could not load JIntellitype.dll from local file system or from inside JAR
最后你的Intell没能找到这个JIntellitype64.dll
FromJarToFileSystem could not load DLL: com/melloware/jintellitype/JIntellitype64.dll
你找找看你的Jar包里有没有JIntellitype64.dll看看, jar -tvf... | grep 'JIntellitype***"
JIntellitype64.dll,64位的dll,windows好像有个兼容性设置,你是32位的cpu却区好64为的dell,
是不是你把快捷键的兼容性设置改变了。