是否可以将 .exe 应用程序打包到 war 文件中?
我有一个网络应用程序(.war)文件。有一个工具 (.exe) 用于某些计算,但它目前位于此 Web 应用程序之外。我们有一个需求,我们需要将这个.exe文件和.war文件打包成单个.war文件,以便用户只需单击特定链接,就可以从.war文件中打开.exe。
我的问题是,是否可以将两者(exe 和 war)打包到单个 war 文件中?如果是的话,请告诉我方便的方法。我做了一些谷歌搜索,但大多数答案显示将 war 转换为 exe 文件,这是我不需要的。
I have one web application(.war) file. There is one tool (.exe) which is used for some computation but it is currently outside of this web application. We have a requirement, where we need to package this .exe file and .war file into single .war file, so that user can just click a particular link and .exe will be opened from the .war file.
My question is, is it possible to package both (exe and war) into the single war file? If yes, can please let me know the convinient way. I did some googling but most of the answer shows converting war to an exe file, which i dont require.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
war 文件只不过是一个 zip 存档,因此您可以在其中放置任何您想要的内容。
现在这个用例看起来很奇怪。您打算从网站下载可执行文件吗?
A war file is nothing more than a zip archive, as such you can place whatever you want inside.
Now the use case seems strange. Do you intend to download the executable from the website?