我在IntelliJ IDE中编写Java应用程序。该应用程序使用Rserve包连接到R并执行某些功能。当我想第一次运行我的代码时,我必须在命令行中启动R并启动Rserve作为守护进程,它看起来像这样:
R
library(Rserve)
Rserve()
执行此操作后,我可以轻松访问R中的所有功能而不会出现任何错误。但是,由于这个Java代码将捆绑为可执行文件,因此有一种方法可以在代码运行后自动调用Rserve(),这样我就必须跳过使用命令行启动Rserve的手动步骤?
答案 0 :(得分:4)
以下是我为Class
Rserve
而撰写的Java
代码
public class InvokeRserve {
public static void invoke() {
String s;
try {
// run the Unix ""R CMD RServe --vanilla"" command
// using the Runtime exec method:
Process p = Runtime.getRuntime().exec("R CMD RServe --vanilla");
BufferedReader stdInput = new BufferedReader(new
InputStreamReader(p.getInputStream()));
BufferedReader stdError = new BufferedReader(new
InputStreamReader(p.getErrorStream()));
// read the output from the command
System.out.println("Here is the standard output of the command:\n");
while ((s = stdInput.readLine()) != null) {
System.out.println(s);
}
// read any errors from the attempted command
System.out.println("Here is the standard error of the command (if any):\n");
while ((s = stdError.readLine()) != null) {
System.out.println(s);
}
// System.exit(0);
}
catch (IOException e) {
System.out.println("exception happened - here's what I know: ");
e.printStackTrace();
System.exit(-1);
}
}
}
答案 1 :(得分:3)
我知道这个问题已被问了很久。我想你有答案。但以下答案可能有助于其他人。这就是我发布答案的原因。 回答: - 而不是一次又一次地到R控制台启动Rserve。你可以做的一件事是你可以编写一个java程序来启动Rserve。
下面的代码可以在java程序中使用来启动Rserve。 https://www.sitepoint.com/community/t/call-linux-command-from-java-application/3751。这是你将获得从java运行linux命令的代码的链接。我只更改了命令并在下面发布。
package javaapplication13;
import java.io.*;
public class linux_java {
public static void main(String[] args) {
try {
String command ="R CMD Rserve";
BufferedWriter out = new BufferedWriter(new FileWriter(
new File(
"/home/jayshree/Desktop/testqavhourly.tab"), true));
final Process process = Runtime.getRuntime().exec(command);
BufferedReader buf = new BufferedReader(new InputStreamReader(
process.getInputStream()));
String line;
while ((line = buf.readLine()) != null) {
out.write(line);
out.newLine();
}
buf.close();
out.close();
int returnCode = process.waitFor();
System.out.println("Return code = " + returnCode);
} catch (Exception e) {
e.printStackTrace();
}
}
}