Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我想在 DOORS 中有一个自定义插件菜单,并想从那里调用一些 JAVA 代码。是否可以在 DXL 中调用可执行的 jar 文件?
这取决于您是否可以从命令提示符运行它。如果可以,那么您需要做的就是使用以下命令调用它:
system('C:\\Users\\USERNAME\\Desktop\\JARFILE.exe')
这个特定示例将从用户的桌面运行文件。您可能需要根据文件所在的位置以不同方式引用文件。
有关详细信息,system请在 DOORS 内的 DXL 参考手册中搜索。
system