我有这个代码:
import org.rosuda.REngine.Rserve.RConnection;
public class TestProgram {
public static void main(String[] args) {
try {
RConnection rConnection = new RConnection();
// make a new local connection on default port (6311)
rConnection.eval("for(i in 1:.Machine$integer.max){}");
System.out.println("Done!");
}
catch(Exception e) {
System.out.println(e.toString());
}
}
}
我得到这个例外:
org.rosuda.REngine.Rserve.RserveException: eval failed, request status: error code: 127
如果我改变:
rConnection.eval("for(i in 1:.Machine$integer.max){}");
至
rConnection.eval("for(i in 1:777){}");
它确实有效:-)
有谁知道发生了什么?
PS我从R(同一台机器)开始使用Rserve:
>library(Rserve)
>Rserve()
> sessionInfo()
R version 3.0.1 (2013-05-16)
Platform: x86_64-w64-mingw32/x64 (64-bit)
locale:
[1] LC_COLLATE=English_United States.1252
[2] LC_CTYPE=English_United States.1252
[3] LC_MONETARY=English_United States.1252
[4] LC_NUMERIC=C
[5] LC_TIME=English_United States.1252
attached base packages:
[1] stats graphics grDevices utils datasets methods base
other attached packages:
[1] Rserve_1.7-3
loaded via a namespace (and not attached):
[1] tools_3.0.1
操作系统是 Windows 8。我没有在 Linux 上尝试过。