如何在 java 中使用 "closure-compiler "

how to use "closure-compiler " inside the java

我正在使用 Google 提供的闭包编译器。我在字符串变量中有 JavaScript。需要在 java

中使用闭包编译器压缩字符串

我已经尝试过以下代码 link http://blog.bolinfest.com/2009/11/calling-closure-compiler-from-java.html

这是我使用的代码"source"变量具有java脚本的值

Compiler compiler = new Compiler();

CompilerOptions options = new CompilerOptions();
// Advanced mode is used here, but additional options could be set, too.

CompilationLevel.SIMPLE_OPTIMIZATIONS.setOptionsForCompilationLevel(options);

compiler.compile(source, options);

return compiler.toSource();

我在以下行中有错误:compiler.compile(source, options);

Compiler.complier()方法不需要2个参数,但需要3个参数。

看看这个link。 您将了解您正在调用的方法所需的参数数量和种类。