Examples of RConsoleOutputStream


Examples of org.rosuda.JRI.RConsoleOutputStream

        if (!re.waitForR()) {
            System.out.println("Cannot load R");
            return;
        }
    System.out.println("re-routing stdout/err into R console");
    System.setOut(new PrintStream(new RConsoleOutputStream(re, 0)));
    System.setErr(new PrintStream(new RConsoleOutputStream(re, 1)));
   
    System.out.println("Letting go; use main loop from now on");
    }
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.