我正在使用RCaller在java
中执行我的R命令 Caller caller = new RCaller();
RCode code = new RCode();
caller.setRscriptExecutable("C:\\Program Files\\R\\R-3.2.2\\bin\\Rscript");
caller.cleanRCode();
String command = "XYZ R ccommand";
code.addRCode(command);
caller.setRCode(code);
caller.runAndReturnResult("b"); //This should output the value of b
caller.setRCode(代码);是它给出错误的地方,eclipse建议addRcode,同时这样做,再次出错。
我正在使用R3.2.2 ON win7 64x
在git https://github.com/jbytecode/rcaller/blob/master/RCaller/src/main/java/examples/Example2.java上定义了此方法,但在同一cmd行上抛出错误。