R eval (자바에서 R 결과값 받기)
아래의 rc는 Rconnection임.
rc.voidEval (“x<-c(1,2,3,4,5)”);
REXP temp=rc.Eval(“x”);
String str=temp.asString();
이렇게하면 str에 벡터 x 의 값이 들어옴.