vote up 4 vote down star

In JDK6, is there a way to load multiple scripts, each in a file, and have the one script reference a method of another script? Sort of like "include"?

flag

78% accept rate

2 Answers

vote up 3 vote down check

I think you're after the load() method/property of Rhino's global object/scope

load("file1.js");
load("file2.js");
load("file3.js");

methodFromFileOne();
var bar = methodFromFileTwo();
var etc = dotDotDot();

This will load a javascript source file, similar to how include/require will in PHP. Once you load a file, you'll be able to call and function or use any object defined in the loaded file.

This is how things work when you're using the Rhino shell, which is the only context I know (your question mentioned the Java SDK, which is outside my area of experience)

link|flag
Is this available outside of the Rhino shell? – Thilo Mar 17 at 1:12
Not sure, that's not my pay rate. (updated the question to reflect that) – Alan Storm Mar 17 at 5:23
vote up 1 vote down

As long as you use the same scope to execute each file, they will be able to reference functions and variables from previously executed files.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.