Using the javax.script package for javascript with an external src attribute - Stack Overflow most recent 30 from stackoverflow.com 2009-12-04T08:35:41Z http://stackoverflow.com/feeds/question/94582 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/94582/using-the-javax-script-package-for-javascript-with-an-external-src-attribute 1 Using the javax.script package for javascript with an external src attribute crowmagnumb 2008-09-18T17:16:48Z 2008-09-19T15:58:56Z <p>Say I have some javascript that if run in a browser would be typed like this...</p> <pre><code> &lt;script type="text/javascript" src="http://someplace.net/stuff.ashx"&gt;&lt;/script&gt; &lt;script type="text/javascript"&gt; var stuff = null; stuff = new TheStuff('myStuff'); &lt;/script&gt; </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#96911 2 Answer by Stephen Deken for Using the javax.script package for javascript with an external src attribute Stephen Deken 2008-09-18T21:00:32Z 2008-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#96916 0 Answer by sblundy for Using the javax.script package for javascript with an external src attribute sblundy 2008-09-18T21:01:02Z 2008-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>