我正在使用Java运行使用JRE捆绑的默认Rhino编写的简单脚本。我希望能够在应用程序和命令行版本中使用相同的脚本,因此我无法使用java.lang.System.exit(3)
(它会过早地退出主机应用程序。)我无法使用安全管理器来阻止它当安全经理生效时,人们会抱怨性能问题。
JavaScript中是否有一些函数可以退出脚本?
答案 0 :(得分:2)
不,没有。但是你可以创建一个名为ExitError
:
public class ExitError extends Error {
private final int code;
public ExitError(int code) {
this.code = code;
}
public int getCode() {
return code;
}
}
现在,在应用程序的脚本运行器中,您可以执行以下操作:
public int runScript() {
try {
// Invoke script via Rhino
} catch (ExitError exc) {
return exc.getCode();
}
}
在命令行版本中:
public static void main(String[] args) {
try {
// Invoke script via Rhino
} catch (ExitError exc) {
System.exit(exc.getCode());
}
}
此外,在您的JS代码中,编写一个包装函数:
function exit(code) {
throw new ExitError(code);
}
答案 1 :(得分:1)
这是一个想法:
将您的脚本包装在一个函数中并调用它。从此函数返回将退出脚本。
//call main
main();
//The whole work is done in main
function main(){
if(needToExit){
//log error and return. It will essentially exit the script
return;
}
//your script goes here
}