gpt4 book ai didi

java - 如何从 InstallAnywhere 启动 java 代码?

转载 作者:行者123 更新时间:2023-12-01 17:31:17 25 4
gpt4 key购买 nike

我想从 jar 文件启动静态函数并在安装期间接收其返回值。除了执行 java.exe 之外,还有其他方法吗?

最佳答案

我真的不明白投反对票的原因......

您可以通过扩展 InstallAnywhere 的 CustomCodeAction 在安装过程中运行自定义代码。您所需要做的就是重写基类的 installuninstall 方法。请找到下面的示例代码片段。

public class MyCustomCodeAction extends CustomCodeAction {
public void install(InstallerProxy proxy) throws InstallException {
// call the static function of your jar here
}

public void uninstall(UninstallerProxy Uproxy) throws InstallException {
// you can do something here if you need (not must)
}
}

祝你好运!

关于java - 如何从 InstallAnywhere 启动 java 代码?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/10628308/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com