How to set the java.library.path in intelliJ Idea(如何在 intelliJ Idea 中设置 java.library.path)
问题描述
谁能帮我解决这个错误:
Could anyone please help how do I solve this error:
Native code library failed to load.
java.lang.UnsatisfiedLinkError: no ts-jni in java.library.path
我是第一次使用 IDEA IDE,并且一直使用 Resin_4.0.37 作为服务器来测试我的工作.一旦我在调试模式下启动我的 lcoal 服务器,它会停留大约 1-2 分钟,然后突然下降并通过给我上述错误而断开连接.
I am using IDEA IDE as a first time, and have been using Resin_4.0.37 as a server to test my work. As soon as I start my lcoal server in debug mode it stays for approximately 1-2 mins and then suddenly it drops down and get disconnected by giving me the above error.
我已经正确设置了我的 Windows 环境变量;并且还在我的 IDE intelliJ 中执行了以下操作:
I have set my Windows environmental variable correctly; and have also did the following in my IDE intelliJ:
FILE->Project Structure->set Global Libraries->a. Java path and b. Resin library path.
任何人都可以建议我,我做错了什么以及如何在 intelliJ IDEA 中设置本机库来解决上述错误.
Can any one please suggest me, what am I doing wrong and how do I set native library in intelliJ IDEA to solve the mentioned error.
任何帮助将不胜感激.如果我做错了什么也请纠正我.
Any help would be appreciated. Also do correct me if I am doing something wrong.
谢谢!
推荐答案
如果你从 IntelliJ 运行你的程序,那么你可以在 VM options
中设置 java.library.path
Run/Debug Configurations
对话框中的 code> 输入字段.
If you run your program from IntelliJ then you can set the java.library.path
in the VM options
input field in the Run/Debug Configurations
dialog.
例子:
-Djava.library.path="C:path owhere hejnilibis"
这篇关于如何在 intelliJ Idea 中设置 java.library.path的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:如何在 intelliJ Idea 中设置 java.library.path
基础教程推荐
- 如何使用 Eclipse 检查调试符号状态? 2022-01-01
- Spring Boot Freemarker从2.2.0升级失败 2022-01-01
- 如何对 HashSet 进行排序? 2022-01-01
- 由于对所需库 rt.jar 的限制,对类的访问限制? 2022-01-01
- 如何在不安装整个 WTP 包的情况下将 Tomcat 8 添加到 Eclipse Kepler 2022-01-01
- Java 中保存最后 N 个元素的大小受限队列 2022-01-01
- 首次使用 Hadoop,MapReduce Job 不运行 Reduce Phase 2022-01-01
- 如何强制对超级方法进行多态调用? 2022-01-01
- 如何使用 Stream 在集合中拆分奇数和偶数以及两者的总和 2022-01-01
- 在螺旋中写一个字符串 2022-01-01