Does Rhino have function convert its script to java source code?

280 Views Asked by At

Does Rhino have function convert its script to java source code? I want to convert Rhino script to java source code.

1

There are 1 best solutions below

0
On

I think is not possible do that. You need to read the Rhino documentation and if you know a little bit of java you can do this.

but if you want to learn some code of rhino writing by other person you can do this when a few breakpoints.

Java:

public void CheckMe(Object obj) {
   // breakpoint here -> 
   System.out.println(obj);

}

Javascript or (Rhino file):

function doMe() {
   // here you can pass any object to java 
   javaInjectedContext.CheckMe(some_object); 

   // e.g.
   var hola = { "huup" : 202, mikaSp : "jjuu"};
   javaInjectedContext.CheckMe(hola);
}
doMe();

and when your are debuggin you will check each line.. the content of each object (like each step) so you can check class type or value, etc.