我正在使用Rserve通过我的Java项目访问R脚本。 java代码要求用户输入以输入文件位置并存储在String变量中。然后该变量传递给R函数,该函数应该读取文件位置。但这样做我得到以下错误:
Exception in thread "main" org.rosuda.REngine.Rserve.RserveException: eval failed, request status: error code: 127
at org.rosuda.REngine.Rserve.RConnection.eval(RConnection.java:234)
at testMain.main(testMain.java:23)
这是我的java代码:
import java.util.Scanner;
import org.rosuda.REngine.REXP;
import org.rosuda.REngine.REXPMismatchException;
import org.rosuda.REngine.REngineException;
import org.rosuda.REngine.Rserve.RConnection;
import org.rosuda.REngine.Rserve.RserveException;
public class testMain {
static String dirPath;
public static void main(String[] args) throws REXPMismatchException, REngineException
{
// For user input
Scanner scanner = new Scanner(System.in );
System.out.println("Enter the file path: ");
dirPath = scanner.nextLine();
RConnection c = new RConnection();
// source the Palindrome function
c.eval("source('/home/workspace/TestR/testMain.R')");
REXP valueReturned = c.eval("testMain(dirPath)");
System.out.println(valueReturned.asString());
}
}
这是我的R函数:
testMain <- function(dirPath)
{
p<-dirPath
return(p)
}
有人可以帮我解决这个问题吗?
答案 0 :(得分:1)
这样的事情可能有用:
REXP valueReturned = c.eval("testMain(\""+dirPath+"\")");
问题是 - 我认为 - 在引用它之前你没有为R上下文设置dirPath变量。