我想从jar文件启动静态函数并在安装时接收其返回值。有没有其他方法,而不是执行java.exe?
我真的不明白反对票的原因......
您可以在安装过程中通过从 InstallAnywhere 的自定义代码操作扩展来运行自定义代码。您需要做的就是重写基类的install
和uninstall
方法。请在下面找到示例代码的片段。
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)
}
}
祝你好运!