Displaying 2 results from an estimated 2 matches for "rreadconsole".
Did you mean:
  r_readconsole
  
2007 Jun 12
0
JGR and big list of packages.
...actPreferences.put(AbstractPreferences.java:228)
        at org.rosuda.JGR.toolkit.JGRPrefs.writePrefs(JGRPrefs.java:281)
        at 
org.rosuda.JGR.toolkit.JGRPrefs.writeCurrentPackagesWhenExit(JGRPrefs.java:314)
        at org.rosuda.JGR.JGR.exit(JGR.java:241)
        at org.rosuda.JGR.JGRConsole.rReadConsole(JGRConsole.java:480)
        at org.rosuda.JRI.Rengine.jriReadConsole(Rengine.java:371)
        at org.rosuda.JRI.Rengine.rniRunMainLoop(Native Method)
        at org.rosuda.JRI.Rengine.run(Rengine.java:533)
I think that is a problem with the JGR's package manager. It is possible to 
disable p...
2009 Mar 30
0
Problem in S4 object displaying from within a Java application using JRI
...ss TextConsole implements RMainLoopCallbacks {
    public void rWriteConsole(Rengine re, String text, int oType) {
         System.out.print(text);
    }
    public void rBusy(Rengine re, int which) {
        System.out.println("rBusy(" + which + ")");
    }
    public String rReadConsole(Rengine re, String prompt, int addToHistory)
{
        System.out.print(prompt);
        try {
            BufferedReader br = new BufferedReader(new
InputStreamReader(System.in));
            String s = br.readLine();
            return (s == null || s.length() == 0) ? s : s + "\n";...