我编写项目,在那里我使用Groovy和Java。 我的项目中有这个Groovy脚本:
int sum(def a, def b) {
return (int)a + (int)b;
}
在我的主Java课程中,我写了这个:
public static void main(String[] args) {
int answer = 0;
String[] arguments = new String[]{"1", "2"};
GroovyShell shell = new GroovyShell();
try {
answer = (int) shell.run(new File("src/Summary.groovy"), arguments);
System.out.print(answer);
} catch (IOException e) {
e.printStackTrace();
}
}
但我在此行中NullPointerException
:answer = (int) shell.run(new File("src/Summary.groovy"), arguments);
那么,我想要什么?我想运行Main类并调用groovy脚本,它包含sum a + b的函数并将此值返回给Java代码。
我该怎么做对吗?
UPD:
来自Main class的完整stackTrace:
Exception in thread "main" java.lang.NullPointerException
at Main.main(Main.java:12)
at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62)
at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)
at java.lang.reflect.Method.invoke(Method.java:497)
at com.intellij.rt.execution.application.AppMain.main(AppMain.java:140)
UPD2:
输出不正确:
a:1 b:2 answer: 33
我用这个脚本:
def sum (int a, int b) {
print("a:" + a + " b:" + b + "\n")
return a + b
}
return sum (args[0].toInteger(), args[1].toInteger())
来自Main类的代码正确调用它,但回答错误
答案 0 :(得分:1)
你必须在你的脚本中调用一些东西 - 而不仅仅是提供一个函数。所以你的脚本看起来像:
int sum(def a, def b) {
return ((int)a) + ((int)b)
}
return sum (args[0], args[1])
仍然将一个String转换为int看起来很奇怪 - 也许你想要将字符串解析为整数或其他东西(例如"1".toInteger()
或a.toInteger()
,如你的情况)。