【发布时间】:2022-05-11 23:57:25
【问题描述】:
任何人都可以帮助使用 jlink java 编写简单的程序,以在执行 java 程序时打开 creo 工具。 到目前为止我所做的是,安装了 creo-5.0.0.0 和 JDK 8 和 JLink 我试图执行一些程序,我得到了上述错误。 我可以知道我是否遗漏了什么吗?我只想要路径的基本步骤需要设置和编程以运行打开的 creo 工具进行绘制。我只是对开发完全陌生。任何帮助表示赞赏。谢谢
try
{
proe_cmd = "proeCmd -g:no_graphics -i:rpc_input";
pfcInstallTest.printMsg ("Async install test started.");
System.loadLibrary ("pfcasyncmt");
AsyncConnection ac = pfcAsyncConnection.AsyncConnection_Start (proe_cmd, null);
currSession = ac.GetSession ();
new pfcInstallTest (currSession);
ac.End();
pfcInstallTest.printMsg ("Async install test completed.");
System.runFinalization();
System.exit (0);
}
【问题讨论】: