0
votes
3answers
145 views
Split java strings in Rhino
I'm trying to split a java string in a Rhino javascript program
var s = new java.lang.String("1 2 3");
s.split();
which give me the error
js: Can't find …
0
votes
4answers
112 views
How can I add an object property to the global object in rhino javascript
I have some properties in an object that I would like to add to the global namespace. In javascript on the browser I could just add it to the window object like so:
var …
