有 Java 编程相关的问题?

你可以在下面搜索框中键入要查询的问题!

捕获到java意外异常:com。ptc。pfc.实施。运行AsyncInstallTest时PFCEExceptions$XToolkitGeneralError

任何人都可以帮助编写简单的程序,使用jlink java打开creo工具来执行java程序。 到目前为止,我所做的是,安装了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);

 }

共 (0) 个答案