java Swing程序中是否可以调用NSIS脚本
我有一个java代码,我需要在运行时调用NSIS脚本,是否可以在运行时通过java代码调用NSIS脚本,如果可能的话请给出一个例子..
提前致谢..
I have a java code in that i need to call NSIS script at run time, is it possible to call an NSIS script via java code at run time, if it possible kindly give an example..
Thanks in advance..
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我不认为你可以从java“调用”NSIS。
我看到的唯一选项是,由于您有 NSIS 命令行选项,因此您可以使用 Runtime.exec() 从 java 调用命令行选项
I don't think you can "call" NSIS from java.
The only option I see is, since you have command line options for NSIS, you can call the command line options from java using
Runtime.exec()