Displaying 2 results from an estimated 2 matches for "geterrorstream".
2005 Jul 05
2
Java and R help
Im doing an aplication in Java and i have a program made in R what i
want to launch with Java.
I have the following instructions:
Runtime r = Runtime.getRuntime();
try
{
System.out.println ("Llamada a R...");
p = r.exec(sRutaR);
}
catch (IOException e)
{
System.out.println ("Error lanzando R: " +
2008 Oct 31
2
Problem of running R console from Java on linux box
Hi the list:
I can not create R process from Java application with my linux box,
the process never was created, or just terminated immediately after I
called Runtime.getRuntime().exec(...)
The command lines I have tried are(the paths are all correct):
"/bin/sh /usr/bin/R"
"/bin/sh -c /usr/bin/R"
"/usr/lib/R/bin/exec/R"(also set R_HOME=/usr/lib/R)
I