gpt4 book ai didi

java - 如何使用 CPLEX 配置 IntelliJ Idea

转载 作者:太空宇宙 更新时间:2023-11-04 12:30:38 26 4
gpt4 key购买 nike

我读过很多论坛,但没有找到任何有关 IntelliJ Idea 的内容。

我不是开发人员,但我在 Debian 上管理 Tomcat8 服务器。

开发人员希望在其 Grails 应用程序中使用 IBM ILOG CPLEX。他使用 IDE“IntelliJ Idea”。他将通过创建如下对象来使其工作:

// Create the shape / object solver
IloCplex CPLEX IloCplex = new ();
System.out.println ( "\ n IloCplex CPLEX IloCplex = new ();");
...
...

PC用户是windows,安装了IntelliJ IDEA和CPLEX。通过此配置,程序可以运行。

当程序导出.war并传输到tomcat服务器时,它不再起作用。

我们有错误:

Error 500: Internal Server Error

line | method
- 1145 >> | runWorker in java.util.concurrent.ThreadPoolExecutor
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
| 615 | run in java.util.concurrent.ThreadPoolExecutor $ Worker
^ 745 | run. . . in java.lang.Thread

Caused by ControllerExecutionException: Runtime error executing actions
- 1145 >> | runWorker in java.util.concurrent.ThreadPoolExecutor
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
| 615 | run in java.util.concurrent.ThreadPoolExecutor $ Worker
^ 745 | run. . . in java.lang.Thread

Caused by InvocationTargetException: null
- 1145 >> | runWorker in java.util.concurrent.ThreadPoolExecutor
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
| 615 | run in java.util.concurrent.ThreadPoolExecutor $ Worker
^ 745 | run. . . in java.lang.Thread

Caused by UnsatisfiedLinkError: ilog.cplex.Cplex.CPXopenCPLEX ([I) J
- 6594 >> | init in ilog.cplex.CplexI
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
| 629 | <Init> in '
| 11067 | <Init>. ilog.cplex.IloCplex in
| 11082 | <Init> in '
| 93 | save. . agriplan.APProjectController in
| 1145 | runWorker in java.util.concurrent.ThreadPoolExecutor
| 615 | run. . . java.util.concurrent.ThreadPoolExecutor $ Worker in
^ 745 | run in java.lang.Thread

开发人员告诉我它来自 IloCplex CPLEX IloCplex = new (); 行它不起作用。

我猜问题是程序找不到CPLEX所以我在Grails Options“VM options”中添加CPLEX的路径:

-Djava.library.path = / Opt / IBM / ILOG / CPLEX_Studio126 / CPLEX / bin / x86-64_linux

但我也有同样的错误

用户没有忘记实现程序库中的cplex.jar

问题是在服务器端还是在应用程序内?他在 IntelliJ Idea 的其他地方有话要说吗?

我们应该在 IntelliJ Idea 中声明其他内容吗?

非常感谢

最佳答案

如果运行 CPLEX 附带的 java 示例,您是否会遇到相同的错误?要测试这一点,您可以执行以下操作(假设您的路径从上面是正确的):

$ cd /Opt/IBM/ILOG/CPLEX_Studio126/CPLEX/examples/x86-64_linux/static_pic
$ make execute_java 2>&1 | tee output.txt

这会将输出保存在output.txt中,以便您稍后查看。它应该让您了解所需的命令行参数是什么。

例如,在我的系统上,我在 output.txt 中看到以下示例之一:

java  -d64 -Djava.library.path=../../../bin/x86-64_linux -classpath ../../../lib/cplex.jar: LPex3

您只需将 -d64-classpath (使用正确的路径)添加到“VM Options”部分(我没有使用过 IntelliJ,但“VM Options”听起来很合理)。

最后,请参阅Configuring the Eclipse Java IDE to use CPLEX libraries (IBM 技术说明应该可以让您很好地了解 IDE 的要求)。

关于java - 如何使用 CPLEX 配置 IntelliJ Idea,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/37879218/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com