0

Java コードからいくつかの json ファイルをフォーマットし、有名なhttp://jsbeautifier.orgライブラリを使用したいと考えています。

私はこの質問に従いました: Java コードから外部 JavaScript 関数を呼び出しますが、呼び出す正しい関数が見つかりません。

を試しinv.invokeFunction("js_beautify", json)ましたが、次のように報告されます。

java.lang.NoSuchMethodException: no such method: js_beautify

私のコード(実際にはScalaですが、Java APIを使用しているだけです):

val manager = new ScriptEngineManager()
val engine = manager.getEngineByName("JavaScript")
// read script file
engine.eval(FileUtils.readFileToString(new File("beautify.js")))

val inv = engine.asInstanceOf[Invocable]
// call function from script file
inv.invokeFunction("js_beautify", json).asInstanceOf[String]

ファイルの構造beautify.jsは次のとおりです。

(function() {

    // a lot of js code
    // ...

    if (typeof define === "function" && define.amd) {
        // Add support for AMD ( https://github.com/amdjs/amdjs-api/wiki/AMD#defineamd-property- )
        define([], function() {
            return { js_beautify: js_beautify };
        });
    } else if (typeof exports !== "undefined") {
        // Add support for CommonJS. Just put this file somewhere on your require.paths
        // and you will be able to `var js_beautify = require("beautify").js_beautify`.
        exports.js_beautify = js_beautify;
    } else if (typeof window !== "undefined") {
        // If we're running a web page and don't have either of the above, add our one global
        window.js_beautify = js_beautify;
    } else if (typeof global !== "undefined") {
        // If we don't even have window, try global.
        global.js_beautify = js_beautify;
    }
}());

多分私はJavaからいくつglobalかのwindowコンテキストを提供する必要がありますか?


アップデート:

@tiblu の回答から「JSBeautify NetBeans プラグイン」に従いました。

class FormatJson {
  def apply(json: String): String = {
    val context = Context.enter()
    context.setLanguageVersion(Context.VERSION_1_6)
    val scope = context.initStandardObjects()
    val reader = new FileReader(new File("beautify.js"))
    context.evaluateReader(scope, reader, "Beautify", 1, null)
    val fct = scope.get("js_beautify", scope).asInstanceOf[org.mozilla.javascript.Function]
    fct.call(context, scope, scope, Array[AnyRef](json)).toString
  }
}

しかし、それは報告します:

Exception in thread "main" java.lang.ClassCastException: org.mozilla.javascript.UniqueTag cannot be cast to org.mozilla.javascript.Function

scope.get("js_beautify", scope)実際の値は ですNOT_FOUND

私は使用しています"org.mozilla" % "rhino" % "1.7R5"

何か間違っていることでも?

4

1 に答える 1

0

Java で記述された JSBeautify NetBeans プラグインの動作を確認してください - https://github.com/drewhamlett/netbeans-jsbeautify/tree/master/src/com/drewhamlett/jsbeautify

于 2015-04-10T14:09:54.980 に答える