这是我用于按钮单击事件的 Java 代码。我想要做的是将参数传递给我正在调用的python文件......但我得到了args[0]
和args[1]
(cannot find symbol
)的错误。
我怎样才能避免这个问题?如何将参数传递给我以这种方式调用的 Python 文件?
private void jButton1MouseClicked(java.awt.event.MouseEvent evt) {
try {
PythonInterpreter.initialize(System.getProperties(), System.getProperties(), new String[0]);
PythonInterpreter interp = new PythonInterpreter();
interp.set("firstName", args[0]);
interp.set("lastName", 1);
interp.execfile("C:\\Users\\aswin-pc\\Desktop\\pythontest.py");
}
catch (Exception e) {
e.printStackTrace();
}