web-dev-qa-db-ja.com

Java、nashornが別のjsファイルにアクセスする

Java nashorn engineを使用して別のjsから1つのjsを含めることは可能ですか?

ScriptEngine engine = new ScriptEngineManager().getEngineByName("Nashorn");
InputStreamReader rs = new InputStreamReader(new FileInputStream(new File(.../script.js));
engine.eval(rs);

script.js

var System = Java.type('Java.lang.System');
// document.write("./test.js"); - javax.script.ScriptException: ReferenceError: "document" is not defined 
// require('./test.js'); - require is not defined

test.js

System.out.println("reading test.js file");

トップレベルのスクリプト(この例ではscript.js)を作成し、同じディレクトリ内の他のスクリプトのライブラリとして使用したいと思います。

12
hnnn

nashornのload()関数を使用できます

https://wiki.openjdk.Java.net/display/Nashorn/Nashorn+extensions

// can load script from files, URLs

load("foo.js"); // loads script from file "foo.js" from current directory
load("http://www.example.com/t.js"); // loads script file from given URL

// loads script from an object's properties. 

// Object should have "script" and "name" properties.
//     "script" property contains string code of the script. 
//     "name" property specifies name to be used while reporting errors from script
// This is almost like the standard "eval" except that it associates a name with
// the script string for debugging purpose.

load({ script: "print('hello')", name: "myscript.js"})

// load can also load from pseudo URLs like "nashorn:", "fx:". "nashorn:" pseudo URL scheme
// for nashorn's built-in scripts. "fx:" pseudo URL scheme for JavaFX support scripts

// load nashorn's parser support script - defines 'parse'
// function in global scope

load("nashorn:parser.js"); 

// load Mozilla compatibility script - which defines global functions
// like importPackage, importClass for rhino compatibility.

load("nashorn:mozilla_compat.js");
19
Vik Gamov

Nashornは素晴らしいです。

そしてそれは組み込みのloadメソッドが付属しています!!!

loadはURLを取ることができるので、CDNJS上の優れたJavaScriptライブラリを活用できます

Nudge4j を使用すると、 kangaxのhtmlミニファイア を次のように実行できます。

load('https://cdnjs.cloudflare.com/ajax/libs/html-minifier/3.3.3/htmlminifier.js')
minify = require('html-minifier').minify;
input = '<div> <p>    foo </p>    </div>';
output = minify(input, { collapseWhitespace: true });
0
Zo72