Using the javax.script package for javascript with an external src attribute - Stack Overflow most recent 30 from stackoverflow.com2009-12-04T08:35:41Zhttp://stackoverflow.com/feeds/question/94582http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/94582/using-the-javax-script-package-for-javascript-with-an-external-src-attribute1Using the javax.script package for javascript with an external src attributecrowmagnumb2008-09-18T17:16:48Z2008-09-19T15:58:56Z
<p>Say I have some javascript that if run in a browser would be typed like this...</p>
<pre><code> <script type="text/javascript"
src="http://someplace.net/stuff.ashx"></script>
<script type="text/javascript">
var stuff = null;
stuff = new TheStuff('myStuff');
</script>
</code></pre>
<p>... and I want to use the javax.script package in java 1.6 to run this code within a jvm (not within an applet) and get the stuff. How do I let the engine know the source of the classes to be constructed is found within the remote .ashx file?</p>
<p>For instance, I know to write the java code as...</p>
<pre><code> ScriptEngineManager mgr = new ScriptEngineManager();
ScriptEngine engine = mgr.getEngineByName("JavaScript");
engine.eval( "stuff = new TheStuff('myStuff');" );
Object obj = engine.get("stuff");
</code></pre>
<p>...but the "JavaScript" engine doesn't know anything by default about the TheStuff class because that information is in the remote .ashx file. Can I make it look to the above src string for this?</p>
http://stackoverflow.com/questions/94582/using-the-javax-script-package-for-javascript-with-an-external-src-attribute/96911#969112Answer by Stephen Deken for Using the javax.script package for javascript with an external src attributeStephen Deken2008-09-18T21:00:32Z2008-09-18T21:00:32Z<p>It seems like you're asking:</p>
<blockquote>
<p>How can I get <code>ScriptEngine</code> to evaluate the contents of a URL instead of just a string?</p>
</blockquote>
<p>Is that accurate?</p>
<p><code>ScriptEngine</code> doesn't provide a facility for downloading and evaluating the contents of a URL, but it's fairly easy to do. <code>ScriptEngine</code> allows you to pass in a <code>Reader</code> object that it will use to read the script.</p>
<p>Try something like this:</p>
<pre><code>URL url = new URL( "http://someplace.net/stuff.ashx" );
InputStreamReader reader = new InputStreamReader( url.openStream() );
engine.eval( reader );
</code></pre>
http://stackoverflow.com/questions/94582/using-the-javax-script-package-for-javascript-with-an-external-src-attribute/96916#969160Answer by sblundy for Using the javax.script package for javascript with an external src attributesblundy2008-09-18T21:01:02Z2008-09-18T21:01:02Z<p>Are you trying to access the javascript object in the browser page from a java 1.6 applet? If so, you're going about it in the wrong way. That's not what the scripting engine's for. It's for running javascript within a jvm, not for an applet to accesses javascript from with in a browser.</p>
<p>Here's a <a href="http://www.rgagnon.com/javadetails/java-0184.html" rel="nofollow">blog entry</a> that might get you somewhere, but it doesn't look like there's much support.</p>