我正在尝试执行资源内.exe
文件夹中的static/excel
文件,但得到的只是CreateProcess error=2, The system cannot find the file specified
。代码是:
Runtime.getRuntime().exec("/excel/graphs.exe");
如果我在本地运行它,则可以运行,但应用程序将位于其他服务器中:
Runtime.getRuntime().exec("C:/Users/x991713/Desktop/Syngenta Form/graphs.exe");
我还使用位于thymeleaf
中的resources/static/images
从html访问图像,所以我不明白是什么问题。
<img th:src="@{/images/NIAB.png}" alt="Image" height="32" width="78"/>
有人可以为此提出建议吗?